We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
或者你也可以使用下面的形式,基本类型自动转换成包装类型(自动装箱):
Character ch = new Character('x');
这句代码没用到自动装箱,应改为Character ch = 'x';
Character ch = 'x';
在 Java 1.0 和 Java 1.1 中,域扩展名 com、 edu、 org 和 net 等按惯例大写,因此类库中会出现这样类似的名称:com.mindviewinc.utility.foibles。
按语义,com应大写,应改为Com.mindviewinc.utility.foibles
Com.mindviewinc.utility.foibles