Java编程语言外文翻译、英汉互译、中英对照

上传人:壹****1 文档编号:507644364 上传时间:2022-12-21 格式:DOC 页数:8 大小:83.52KB
返回 下载 相关 举报
Java编程语言外文翻译、英汉互译、中英对照_第1页
第1页 / 共8页
Java编程语言外文翻译、英汉互译、中英对照_第2页
第2页 / 共8页
Java编程语言外文翻译、英汉互译、中英对照_第3页
第3页 / 共8页
Java编程语言外文翻译、英汉互译、中英对照_第4页
第4页 / 共8页
Java编程语言外文翻译、英汉互译、中英对照_第5页
第5页 / 共8页
点击查看更多>>
资源描述

《Java编程语言外文翻译、英汉互译、中英对照》由会员分享,可在线阅读,更多相关《Java编程语言外文翻译、英汉互译、中英对照(8页珍藏版)》请在金锄头文库上搜索。

1、外文翻译原文及译文学 院计算机学院专 业计算机科学与技术班 级学 号姓 名指导教师负责教师Java(programming language)Javais ageneral-purpose,concurrent,class-based,object-orientedcomputer program- -ming languagethat is specifically designed to have as few implementation dependencies as possible. It is intended to let application developers writ

2、e once, run anywhere (WORA), meaning that code that runs on one platform does not need to be recompiled to run on another. Java applications are typicallycompiledtobyte code(class file) that can run on anyJava virtual machine(JVM) regardless ofcomputer architecture. Java is, as of 2012, one of the m

3、ost popular programming languages in use, particularly for client-server web applications, with a reported 10 million users.Java was originally developed byJames GoslingatSun Microsystems(which has sincemerged into Oracle Corporation) and released in 1995 as a core component of Sun MicrosystemsJava

4、platform. The language derives much of itssyntaxfromCandC+, but it has fewer low-levelfacilities than either of them.The original andreference implementationJavacompilers, virtual machines, andclass librarieswere developed by Sun from 1991 and first released in 1995. As of May 2007, in compliance wi

5、th the specifications of theJava Community Process, Sun relicensed most of its Java technologies under theGNU General Public License. Others have also developed alternative implementations of these Sun technologies, such as theGNU Compiler for JavaandGNU Classpath.Javais a set of severalcomputer sof

6、twareproducts and specifications fromSun Microsystems(which has since merged withOracle Corporation), that together provide a system for developingapplication softwareand deploying it in across-platformcomputing environment. Java is used in a wide variety ofcomputing platformsfromembedded devicesand

7、 mobile phoneson the low end, toenterprise serversandsupercomputerson the high end. While less common,Java appletsare sometimes used to provide improved and secure functions while browsing theWorld Wide Webondesktop computers.Writing in theJava programming languageis the primary way to produce code

8、that will be deployed asJava bytecode. There are, however, byte codecompilersavailable for other languages such asAda,JavaScript,Python, andRuby. Several new languages have been designed to run natively on theJava Virtual Machine(JVM), such asScala,ClojureandGroovy.Java syntaxborrows heavily fromCan

9、dC+, but object-oriented features are modeled afterSmalltalkandObjective-C. Java eliminates certain low-level constructs such aspointersand has a very simple memory model where every object is allocated on the heapand all variables of object types arereferences. Memory management is handled through

10、integrated automaticgarbage collectionperformed by the JVM.An edition of theJava platformis the name for a bundle of related programs from Sun that allow for developing and running programs written in theJavaprogramming language. The platform is not specific to any one processor oroperating system,

11、but rather an execution engine (called avirtual machine) and a compiler with a set of libraries that are implemented for various hardware and operating systems so that Java programs can run identically on all of them. The Java platform consists of several programs, each of which provides a portion o

12、f its overall capabilities. For example, the Java compiler, which converts Java source code into Java byte code (an intermediate language for the JVM), is provided as part of theJava Development Kit(JDK). TheJava Runtime Environment(JRE), complementing the JVM with ajust-in-time (JIT) compiler, conv

13、erts intermediate byte code into native machine code on the fly. An extensive set of libraries are also part of the Java platform.The essential components in the platform are the Java language compiler, the libraries, and the runtime environment in which Java intermediate byte code executes accordin

14、g to the rules laid out in the virtual machine specification.In most modernoperating systems(OSs), a large body of reusable code is provided to simplify the programmers job. This code is typically provided as a set of dynamically loadable librariesthat applications can call at runtime. Because the J

15、ava platform is not dependent on any specific operating system, applications cannot rely on any of the pre-existing OS libraries. Instead, the Java platform provides a comprehensive set of its own standard class libraries containing much of the same reusable functions commonly found in modern operating systems. Most of the system library is also written in Java. For instance,Swinglibrary paints the user interface and handles the events itself, eliminating many subtle differences between how different platforms handle even similar components.The Java class libraries serve three purposes withi

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 大杂烩/其它

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号