CoreJava
Altoria7
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CoreJava Volume 1 Chapter 5 - Inheritance
Classes, Superclasses, and SubclassesDefining Subclasses public class Manager extends Employee{ added methods and fields} The kewyord extends indicates that you are makingn a new class taht derives from an existing class. The existing class原创 2020-06-16 07:13:00 · 508 阅读 · 0 评论 -
CoreJava - Chapter 4: Objects and Classes
Introduction to Object-Oritented ProgrammingIntroduction Each object has a specific functionality, exposed to its users, and a hidden implementation Basically, as long as an object satisfies your specifications, you don't care how the functionality is原创 2020-06-14 01:28:20 · 962 阅读 · 0 评论 -
CoreJava - Chapter 3: Fundamental Programming Structures in Java
3.1 A Simple Java Programpublic class FirstSample{ public static void main(String[] args) { System.out.println("We will not use 'Hello, World!'"); }}The keyword public is called an access modifier; these modifiers control the lev原创 2020-06-08 22:26:24 · 444 阅读 · 0 评论 -
CoreJava - Chapter 2: The java Programming Environment
2.1 Installing he Java Development KitJava Jargons Java Development Kit (JDK): The software for programmers who want to write Java programs Java Runtime Environment (JRE): The software for consumers who wnat to run Java programs Server (JRE): The so原创 2020-06-04 19:59:43 · 215 阅读 · 0 评论 -
CoreJava - Chapter 1: Introduction to Java
1.1 Java as a Programming PlatformJava isnot only a programming language, but also a platform1.2 The Java "White Paper" BuzzwordsSimple Compared to C++ Small: 40k for the size of the basic interpreter and class support; 175k for the basic standar..原创 2020-06-04 11:01:24 · 426 阅读 · 0 评论
分享