Java
文章平均质量分 87
啄慕鸟kevinzeng
The world stands aside to let anyone pass who knows where he is going
展开
-
Learning the Java Language(1.1)
What Is an Object? Objects are key to understanding object-oriented technology. Look around right now and you'll find many examples of real-world objects: your dog, your desk, your television set, y...原创 2009-01-01 12:57:02 · 116 阅读 · 0 评论 -
Learning the Java Language (1.2)
What Is a Class?In the real world, you'll often find many individual objects all of the same kind. There may be thousands of other bicycles in existence, all of the same make and model. Each bicycle...原创 2009-01-01 12:59:44 · 84 阅读 · 0 评论 -
Learning the Java Language(1.3)
What Is Inheritance? Different kinds of objects often have a certain amount in common with each other. Mountain bikes, road bikes, and tandem bikes, for example, all share the characteristics of bic...原创 2009-01-01 13:02:26 · 112 阅读 · 0 评论 -
Learning the Java Language (1.4)
As you've already learned, objects define their interaction with the outside world through the methods that they expose. Methods form the object's interface with the outside world; the buttons on the ...原创 2009-01-01 13:04:10 · 105 阅读 · 0 评论 -
Learning the Java Language(1.5)
What Is a Package?A package is a namespace that organizes a set of related classes and interfaces. Conceptually you can think of packages as being similar to different folders on your computer. You m...原创 2009-01-01 13:05:57 · 113 阅读 · 0 评论