首页上一页 1 下一页尾页 1 条记录 1/1页
求教!
发表在Java图书答疑
2017-02-03
是否精华
是
否
版块置顶:
是
否
package Number;
public class Gess {
public static void main(String[] args) {
// TODO Auto-generated method stub
char word = 'd', word2 = '@';
int p = 23045, p2 = 45213;
System.out.println("d在Unicode表中的顺序位置是:" + (int)word);
System.out.println("@在Unicode表中的顺序位置是:" + (int)word2);
System.out.println("Unicode表中的第23045位置:" + (char)p);
System.out.println("Unicode表中的第45213位置:" + (char)p2);
}
}
这是书上的代码,我想问下(int)word中的 int是不是可以用byte、short和long这三种,他们都是整数类型,而且取值范围也符合要求。