java经典小知识
来源:技术人生 责任编辑:栏目编辑 发表时间:2013-07-02 05:19 点击:次
Math.round(11.5)等於多少? Math.round(-11.5)等於多少?
Math.round(11.5)返回(long)12,Math.round(-11.5)返回(long)-11;
Math.round(11.5)返回(long)12,Math.round(-11.5)返回(long)-11;
tring s = new String("xyz");创建了几个String Object?
两个对象,一个是“xyx”,一个是指向“xyx”的引用对象s。
两个对象,一个是“xyx”,一个是指向“xyx”的引用对象s。
short s1 = 1; s1 = s1 + 1;有什么错? short s1 = 1; s1 += 1;有什么错? short s1 = 1; s1 = s1 + 1;有错,s1是short型,s1+1是int型,不能显式转化为short型。可修改为s1 = (short)(s1 + 1) 。short s1 = 1; s1 += 1正确。
相关新闻>>
- 发表评论
-
- 最新评论 更多>>