java是否提供了类别名功能?

时间:2014-04-09 16:48:49

标签: java

我见过与c#

相关的问题

How to create alias of System Constants class

你能告诉我java是否提供类似功能

例如。

System.out.println(sc.Hello); //see previous question
//here sc is the alias of class name SystemConstants sc

SystemConstants.java类

class SystemConstants
{
  public static final Hello = "Hello";
  public static final Youth = "Youth";
}

1 个答案:

答案 0 :(得分:0)

据我所知,Java中的类名没有内置的别名系统。如果您有特定的需求,内省可能会对您有所帮助,但如果问题是可用性和易编码,那么它可能有点过分。