本文介绍了Java中的静态导入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

静态导入意味着什么,例如:

What does mean by static import, like :

import static com.example.foo.Suggestion;

如何定义此类软件包以及使用静态导入有什么好处?

How to define such packages and what is advantages to use static import?

推荐答案

import static 表示您可以在不使用类名的情况下引用静态值。

import static means that you can references a static value without using the class name.

例如,考虑以下三个类:

For example, consider these three classes:

package com.example;
public class foo {
    public static int Suggestion = 5;
}





import com.example.foo;
public class b {
    // …
    int var = foo.Suggestion;
}





import static com.example.foo.Suggestion;
public class c {
    // …
    int var = Suggestion;
}

这篇关于Java中的静态导入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 15:52