欢迎来到毕设资料网! | 帮助中心 毕设资料交流与分享平台
毕设资料网
全部分类
  • 毕业设计>
  • 毕业论文>
  • 外文翻译>
  • 课程设计>
  • 实习报告>
  • 相关资料>
  • ImageVerifierCode 换一换
    首页 毕设资料网 > 资源分类 > DOC文档下载
    分享到微信 分享到微博 分享到QQ空间

    java介绍外文翻译

    • 资源ID:125384       资源大小:78.50KB        全文页数:15页
    • 资源格式: DOC        下载积分:100金币
    快捷下载 游客一键下载
    账号登录下载
    三方登录下载: QQ登录
    下载资源需要100金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。

    java介绍外文翻译

    1、外文原文 Introduction to Java autor: Martin Ngobye. source: Computing Static Slice for Java Programs Java is designed to meet the challenges of application development in the context of heterogeneous, network-wide distributed environments. Paramount among these challenges is secure delivery of applicati

    2、ons that consume the minimum of system resources, can run on any hardware and software platform, and can be extended dynamically. Java originated as part of a research project to develop advanced software for a wide variety of network devices and embedded systems. The goal was to develop a small, re

    3、liable, portable, distributed, real-time operating platform. When the project started, C+ was the language of choice. But over time the difficulties encountered with C+ grew to the point where the problems could best be addressed by creating an entirely new language platform. Design and architecture

    4、 decisions drew from a variety of languages such as Eiffel, SmallTalk, Objective C, and Cedar/Mesa. The result is a language platform that has proven ideal for developing secure, distributed, network based end-user applications in environments ranging from network-embedded devices to the World-Wide

    5、Web and the desktop. The design requirements of Java are driven by the nature of the computing environments in which software must be deployed. The massive growth of the Internet and the World-Wide Web leads us to a completely new way of looking at development and distribution of software. To live i

    6、n the world of electronic commerce and distribution, Java must enable the development of secure, high performance, and highly robust applications on multiple platforms in heterogeneous, distributed networks. Operating on multiple platforms in heterogeneous networks invalidates the traditional scheme

    7、s of binary distribution, release, upgrade, patch, and so on. To survive in this jungle, Java must be architecture neutral, portable, and dynamically adaptable. The Java system that emerged to meet these needs is simple, so it can be easily programmed by most developers; familiar, so that current de

    8、velopers can easily learn Java; object oriented, to take advantage of modern software development methodologies and to fit into distributed client-server applications; multithreaded, for high performance in applications that need to perform multiple concurrent activities, such as multimedia; and int

    9、erpreted, for maximum portability and dynamic capabilities. Together, the above requirements comprise quite a collection of buzzwords, so lets examine some of them and their respective benefits before going on. Whats completely new is the manner in which Java and its run-time system have combined th

    10、em to produce a flexible and powerful programming system. Developing your applications using Java results in software that is portable across multiple machine architectures, operating systems, and graphical user interfaces, secure, and high performance, With Java, your job as a software developer is

    11、 much easier you focus your full attention on the end goal of shipping innovative products on time, based on the solid foundation of Java. The better way to develop software is here, now, brought to you by the Java language platform. Very dynamic languages like Lisp, TCL, and SmallTalk are often use

    12、d for prototyping. One of the reasons for their success at this is that they are very robust you dont have to worry about freeing or corrupting memory. Similarly, programmers can be relatively fearless about dealing with memory when programming in Java, The garbage collection system makes the progra

    13、mmers job vastly easier; with the burden of memory management taken off the programmers shoulders, storage allocation errors go away. Another reason commonly given that languages like Lisp, TCL, and SmallTalk are good for prototyping is that they dont require you to pin down decisions early on these

    14、 languages are semantically rich. Java has exactly the opposite property: it forces you to make explicit choices. Along with these choices come a lot of assistance you can write method invocations and, if you get something wrong, you get told about it at compile time. You dont have to worry about me

    15、thod invocation error. The Java beginner must grasp 30 basic concepts Basic concept 1.In OOP the only relations is what the object s interface, such as the computer seller he leaves alone internal structure of electrical source, but he is only concerned about that whether the power will be supplied

    16、to you, also so long as know can or not but is not how and why.All procedures are make up of certain attribute and the behavior object, the different object visit invokes through the function invocation, between the object all intercommunion are invoke through the method invocation, By object data e

    17、ncapsulation, enhances reuse rate very much. 2.In OOP the most important thought is class, the class is the template ,is a blueprint, construct an object from a class, namely construct an instance of the class. 3. Encapsulation: is that combines the data and the behavior in a package) and hides the

    18、data the realization process to the object user, in an object data is called its instance field. 4.Through expands a class to obtain a new class is called inheritance, but all classes are constructed by the object super root class of expansion, super root class of as follows can make the introductio

    19、n. 5.Object 3 principal characteristics Behavior- explained this object can make what. Tate- when the object exerts the method object reflection. Dentity- and other similar behavior objects discrimination symbols. Each object has only indentity and among three characteristics they affect mutually. 6

    20、. Relations among classes: Use-a:Dependent relation Has-a:Polymerization relation Is-a: inheritor relation - example:A class has inherited B class, this time A class not only has B class of method, but also has its own method(Individuality exists in general character) 7.Structure object use structur

    21、e:Structure proposing, the structure is one special method, the structure object and to its initialization. Example:A Data class of structure calls Data New Data () - structure a new object, also initialize current time. Data happyday=new Data () - an object evaluates an variable happyday, thus enab

    22、les this object to be used many times, here be stated the cause variable and the object variable are different. New returns the value is a quotation. Constructor characteristic:The constructor may have 0, one or many parameters The constructor and the class have the same name A class may have many c

    23、onstructor. The constructor has not returned value The constructor always be together used with the new operator 8. Over loading: When many methods have the same name when includes the different parameter, then has the over loading Which method does the compiler have to choose invokes. 9.Package : J

    24、ava allow one or many classes to become together as group, is called package, to organizing duty easily, the standard Java storehouse divides into many packages Java.Lang java.Util java, net and so on, the package is layered and all java packages are in java and in a javax package. 10. Extendable thought: permit to construct new class on existing classes , when you extend the class which already existed, then you reuse this class of method and the field,


    注意事项

    本文(java介绍外文翻译)为本站会员(泛舟)主动上传,毕设资料网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请联系网站客服QQ:540560583,我们立即给予删除!




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们
    本站所有资料均属于原创者所有,仅提供参考和学习交流之用,请勿用做其他用途,转载必究!如有侵犯您的权利请联系本站,一经查实我们会立即删除相关内容!
    copyright@ 2008-2025 毕设资料网所有
    联系QQ:540560583