Java编程思想(含外文出处) 
      来源:wenku7.com  资料编号:WK712036 资料等级:★★★★★ %E8%B5%84%E6%96%99%E7%BC%96%E5%8F%B7%EF%BC%9AWK712036
      
          
          以下是资料介绍,如需要完整的请充值下载。
 
            1.无需注册登录,支付后按照提示操作即可获取该资料.
            2.资料以网页介绍的为准,下载后不会有水印.资料仅供学习参考之用.  密 保 惠 帮助
             
         
	  
	  资料介绍
      
        
          
            | 英文翻译Java编程思想(含外文出处)(中文3000字,英文1400字)
 作者姓名:Bruce Eckel
 文章出处:《Thinking In Java》
 摘要:文本简要的介绍了JAVA中对象的概念,JAVA编程中怎么建立对象,以及对象中继承等使用方法。并将这些抽象概念以简易明了的语句阐明清楚,讲解深入浅出,内容系统全面。
 关键字:对象 类型 对象序列化  继承
 
 英文原文
 Thinking In Java
 FourthEditon   BruceEckelPresident,MindView,Inc
 Everything Is an Object
 Although it is based on C++, Java is more of a “pure” object-oriented language.
 Both C++ and Java are hybrid languages, but in Java the designers felt that the hybridization was not as important as it was in C++. A hybrid language allows multiple programming styles; the reason C++ is hybrid is to support backward compatibility with the C language. Because C++ is a superset of the C language, it includes many of that language is undesirable features, which can make some aspects of C++ overly complicated.
 |