1 / 7
文档名称:

java毕业设计外文文献原文及译文.doc

格式:doc   大小:42KB   页数:7页
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

java毕业设计外文文献原文及译文.doc

上传人:buhouhui915 2018/4/27 文件大小:42 KB

下载得到文件列表

java毕业设计外文文献原文及译文.doc

文档介绍

文档介绍:毕业设计说明书
英文文献及中文翻译
学号: 学号:
软件学院
学生姓名:
软件工程
学院:

专业:
指导教师:
2014 年 6 月
Thinking in Java
Although it is based on C++, Java is more of a “pure” object-oriented 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 patibility with the C language. Because C++ is a superset of the C language, it includes many of that language’s undesirable features, which can make some aspects of C++ plicated. The Java language assumes that you want to do only object-oriented programming. This means that before you can begin you must shift your mindset into an object-oriented world (unless it’s already there). The benefit of this initial effort is the ability to program in a language that is simpler to learn and to use than many other OOP languages. In this chapter we’ll see the ponents of a Java program and we’ll learn that everything in Java is an object, even a Java program.
Each programming language has its own means of manipulating data. Sometimes the programmer must be constantly aware of what type of manipulation is going on. Are you manipulating the object directly, or are you dealing with some kind of indirect representation (a pointer in C or C++) that must be treated with a special syntax?