Java编程思想(含外文出处)

以下是资料介绍,如需要完整的请充值下载. 本资料已审核过,确保内容和网页里介绍一致.  
无需注册登录,支付后按照提示操作即可获取该资料.
资料介绍:

英文翻译
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.