
CoreJava
Altoria7
这个作者很懒,什么都没留下…
展开
-
CoreJava Volume 1 Chapter 5 - Inheritance
Classes, Superclasses, and Subclasses Defining 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 · 449 阅读 · 0 评论 -
CoreJava - Chapter 4: Objects and Classes
Introduction to Object-Oritented Programming Introduction 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 · 898 阅读 · 0 评论 -
CoreJava - Chapter 3: Fundamental Programming Structures in Java
3.1 A Simple Java Program public 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 · 405 阅读 · 0 评论 -
CoreJava - Chapter 2: The java Programming Environment
2.1 Installing he Java Development Kit Java 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 · 188 阅读 · 0 评论 -
CoreJava - Chapter 1: Introduction to Java
1.1 Java as a Programming Platform Java isnot only a programming language, but also a platform 1.2 The Java "White Paper" Buzzwords Simple 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 · 389 阅读 · 0 评论