- 浏览: 661575 次
- 性别:
- 来自: 宇宙中的某个角落
最新评论
-
zhuzf:
写的太好了
实例分析Java Class的文件结构 -
随便小屋:
写的太好了,Mark一下,楼主辛苦了!
实例分析Java Class的文件结构 -
lowkey2046:
引用 应用程序注册读就需事件和相关联的事件处理器应该是读就绪吧 ...
高性能IO设计的Reactor和Proactor模式 -
BigBird2012:
“JVM引入了分代收集的策略,其中对新生代采用"Ma ...
JVM内存模型以及垃圾收集策略解析 -
xuelian2010:
找到合适的人做正确的事情!!!
三月份辞职创业,北京第一家线下体验店成功开张,伙伴们加油!
文章列表
下面这个小程序给我们展示了JAVA中符号扩展的有趣之处。
public class Muticast{
public static void main(String[ ] args){
System.out.println((int)(char)(byte) - 1 );
}
}
本程序运行结果是:65535 o(∩_∩)o...哈哈
上面的程序涉及到了JAVA中的多重转型。在涉及到多重转型时有一个简单的规则:如果最初的数值是有符号的,那么就进行符号扩展,如果是char,不管要转为什么类型都进行零扩展。有了这条规则,上面的程序应该就清晰了,首先-1转 ...
- 2007-06-02 20:04
- 浏览 1412
- 评论(1)
第一焦点:句子就是一切!句子就是财富!
克立兹提倡的英语学习单位是句子,句子简单明确,容易掌握,并马上可以用于交流!感觉棒极了!味道好极了!
可悲的现实:从初中学英语到现在,辛辛苦苦学习了上百课精读,但结局如何?大家心里最清楚:学精读、分析课文的时候清清楚楚,充满成就感,好象是学到了很多知识、很多单词、很多语法、很多"语言点",但在实际应用的时候却模模糊糊,似是而非,几乎说不出几个正确的句子!几乎全部还给了课本!
强烈的呼吁:学习精读的时候,一定要把课文中实用的句子总结出来,并脱口而出!这才是真正的学习语言!
冲天的信心:学习英语没有什么了不起!你的征服对象不 ...
- 2007-06-02 00:03
- 浏览 1576
- 评论(0)
There is no consensus of opinions among people as to the view of wealth,Some people claim
that wealth is the most powerful and important thing in life ,while some other people believe that
there are many things that can't be bought with wealth.
As far as i am concerned,i agree with t ...
- 2007-06-01 23:54
- 浏览 3673
- 评论(0)
先来看一个小程序:
public class JoyOfHex{
public static void main(Sting[ ] args){
System.out.println(
Long.toHexString(0x100000000L+0xcafebabe));
}
}
初看这个小程序的结果应该是:1cafebabe;但是并不是我们想象的那样。这个问题设计到了十进制和十六进制以及八进制数
在JAVA中字面常量的属性问题。对于十进制数,JAVA中如果不显示的在前面加负号,那么就是正数,但是对与十六进制和八进制数,如果 ...
- 2007-06-01 21:09
- 浏览 3515
- 评论(0)
http://www.netyi.net/in.asp?id=xmuzyu 大家可以去看看,下载电子书 o(∩_∩)o...哈哈
- 2007-06-01 09:17
- 浏览 1490
- 评论(0)
面试官:熟悉哪种语言
应聘者:Java。
面试官:知道什么叫类么
应聘者:我这人实在,工作努力,不知道什么叫累
面试官:知道什么是包?
应聘者:我这人实在 ...
- 2007-05-31 23:29
- 浏览 1488
- 评论(0)
As i waked up in the morning ,i feel that i catch a cold ,no strength of my body.
now it is 23:00 again,but i don't get health, i was so depressed.i hope i can get well soon.
Just ,i saw the fifth Rome ,a teleplay of Americ,a very bloody view, the section tell me that
the Rome will be conqu ...
- 2007-05-31 23:20
- 浏览 1216
- 评论(0)
我们先来看一个短小的程序:
public class LongDivison{
public static void main(String[ ] args){
final long millise_per_day = 24*60*60*1000;
final long micros_per_day = 24*60*60*1000*1000;
System.out.println(micros_per_day / millise_per_day);
}
}
其实millise_per_day表示一天 ...
- 2007-05-31 19:20
- 浏览 1644
- 评论(1)
sunshine ,2007.05.30.
The time is 23:00,and the electricity will be cut off, the temperature of xiamen is so hot that
i feel a little annoy..
There is only few days left before the examnation,assembly language,handware basic,
which i feel baldness,java language(my love),and english....so many ...
- 2007-05-30 23:16
- 浏览 1090
- 评论(0)
注意:1 点线框代表接口,虚线框表示抽象类,实线框表示具体的类。
2 实线箭头表示这个类可以生成被指向的那个类的对象。(此时实际上指的是实现了接口的对象)
- 2007-05-30 18:47
- 浏览 1365
- 评论(0)
JAVA线程,希望对大家有用。
- 2007-05-29 22:50
- 浏览 1611
- 评论(0)
JAVA 网络编程,Bruce eckel推荐读物。希望对大家有用。
- 2007-05-29 22:45
- 浏览 1763
- 评论(0)
Health or wealth is a lasting topic,some pople think health is important,and others think the wealth is first.but I think the wealth and health are different aspect ,we counldn't bring them into comparsion.
The health is basic to us ,a guys who don't have a good health,must be confused, despite ...
- 2007-05-29 12:51
- 浏览 4164
- 评论(0)