
java
wkmiler
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
one question about type casting
public class test { public static void main(String args[]) { System.out.println(Integer.toBinaryString(-129)); System.out.println(Integer.toBinaryString(128)); byte a = (byte)128; byte b = (原创 2012-03-20 12:18:21 · 640 阅读 · 0 评论 -
the difference between final and static in java
static modifier keyword can be modified with variable and block as well as class method: When you define a static variable, jvm will be allocated in the memory heap, All Programs, a refere原创 2012-03-20 13:23:33 · 735 阅读 · 0 评论