rt

解决方案 »

  1.   

    你的<Core Java>是第几版的?
    那套书很好
      

  2.   

    有谁在看<<core java>>(7th edition)卷一的?大家可以跟帖写写读书笔记.http://www.flickr.com/groups/zhurui/我手上有个英文版的.谁要就跟我联系 
      

  3.   

    大家直接到这里提取好了:http://pickup.mofile.com/5755715115447685 
    <<core java>>(7th edition)英文版。
      

  4.   

    如果是2进制,要用符号e,不是p吧。p指以16为底数。
      

  5.   

    直接给代码:public class Test {
        public static void main(String[] args) {
           String s =  Double.toHexString(0.125);
           System.err.println(s);
        }
    }
    输出结果:0x1.0p-3
    查阅toHexString()就清楚了