
技术文章翻译系列
一只小小小小丶小菜鸟
这个世界上有三样东西是别人抢不走的,吃进肚子里的饭,读进脑子里的书,还有藏在心中的梦想。
展开
-
什么是JVM?Java虚拟机介绍
本文翻译自javaworld,英文原文链接https://www.javaworld.com/article/3272244/what-is-the-jvm-introducing-the-java-virtual-machine.htmlJava虚拟机的使用和定义Java虚拟机有两个主要功能:允许Java程序在任何设备和操作系统上运行("Write once,run anywhere"-...翻译 2019-04-21 15:16:00 · 1839 阅读 · 0 评论 -
什么是JDK?java开发组件(Java Development Kit)介绍
本文翻译自javaworld,英文原文链接https://www.javaworld.com/article/3296360/what-is-the-jdk-introduction-to-the-java-development-kit.html简单介绍JDK是Java开发中用到的三个核心技术包之一,其他两个是JRE和JVM。理解三者之间的区别与联系是非常重要的。JVM是执行java...翻译 2019-04-28 18:24:35 · 3059 阅读 · 0 评论 -
所有好的软件代码的6个共同点
本文翻译自javaworld.com,英文原文链接https://www.javaworld.com/article/2986341/6-things-all-good-software-code-has-in-common.html?upd=1556447989020现在世界上有很多很多的代码;让人惊讶的是,仅仅谷歌自己的存储库中就有超过20亿行代码。但是并不是所有的代码都是以相同的方式创建...翻译 2019-05-12 14:20:20 · 504 阅读 · 0 评论 -
Java 101: Java多态及其类型
学习四种类型的多态,并开始使用子类型多态执行一个方法的不同形式。翻译 2019-06-01 17:40:47 · 16017 阅读 · 0 评论 -
Effective Java(前言)
If a colleague were to say to you,"Spouse of me this night today manufactures the unusual meal in a home. You will join?"three things would likely corss your mind: third,that you had been invited to d...翻译 2019-06-09 15:19:33 · 310 阅读 · 0 评论 -
第一条:考虑使用静态方法替代构造器
The traditional way for a class to allow a client to obtain an instance is to provide a public consructor.There is another technique that should be a part of every programmer's toolkit.A class can pro...翻译 2019-06-22 18:59:16 · 622 阅读 · 1 评论