Java编程思想(含外文出处)
来源:56doc.com 资料编号:5D12617 资料等级:★★★★★ %E8%B5%84%E6%96%99%E7%BC%96%E5%8F%B7%EF%BC%9A5D12617
资料以网页介绍的为准,下载后不会有水印.资料仅供学习参考之用. 密 保 惠 帮助
资料介绍
英文翻译
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. |