`

Seaeast&collection——Object-oriented Programming(Java)_No.1

阅读更多
一切都是对象 : 
Alan kay曾经总结了第一个成功的面向对象语言、同时也是Java所基于的语言之一的Smalltalk的五个基本特性,这种特性表现了一种纯粹的面向对象程序设计方式:
    1.万物皆为对象。
    2.程序是对象的集合,他们通过发送消息来告知彼此所要做的。
    3.每个对象都有自己的由其他对象所构成的存储。
    4.每个对象都拥有其类型
    5.某一特定类型的所有对象都可以接受同样的消息。
存储:
    对象的存储方式:
    1.寄存器
    2.堆栈。位于通用RAM(随机访问存储器中)。
    3.堆。new将对象存储在“堆”里。
    4.常量存储
    5.非RAM存储
static关键词
    通过static关键字可以满足这两方面的需要。当生命一个事物是static时,就意味着这个域或方法不会与包含它的那个类的任何对象实例关联在一起。所以,即使从未创建某个类的任何对象,也可以调用其static方法或访问其static域。通常,你必须创建一个对象,并用它来访问数据或方法。因为非static域或方法必须知道他们一起运作的特定对象。
foreach语法
    Java SE5引入了一种新的更加简洁的for语法用于数组或容器。
    请注意,由于构造器的名称必须与类名完全相同。
Iterator迭代器
    1.使用方法iterator()要求容器返回一个Iterator。
    2.使用next()获得序列中的下一个元素
    3.使用hasNext()检查序列中是否还有元素
    4.使用remove()将迭代器新返回的元素删除

Next:正则表达式、容器、IO、并发等!

   
分享到:
评论

相关推荐

    Object-Oriented Software Construction 2nd

    5.4 OBJECT-ORIENTED SOFTWARE CONSTRUCTION 116 5.5 ISSUES 117 5.6 KEY CONCEPTS INTRODUCED IN THIS CHAPTER 119 5.7 BIBLIOGRAPHICAL NOTES 119 Chapter 6: Abstract data types 121 6.1 CRITERIA 122 6.2 ...

    Beginning Java 9 Fundamentals(Apress,2ed,2017)

    Learn the basics of Java 9, including basic programming concepts and the object-oriented fundamentals necessary at all levels of Java development. Author Kishori Sharan walks you through writing your ...

    Addison.Wesley.The.Java.Programming.Language.4th.Edition.Aug.2005.chm

    Programmers who are unfamiliar with object-oriented programming notions should read the quick tour, while programmers who are already familiar with object-oriented programming paradigms will find the...

    java.核心技术.第八版 卷1

    java 核心技术 第八版 core 卷1 Core Java, 8th Edition Core Java. Volume I. Fundamentals, 8th Edition Core Java. Volume II. Advanced Features, 8th Edition 官方网站 http://horstmann.com/corejava.html ...

    Java Principles of Object Oriented Programming

    Borror共同编著的一本关于Java编程的著作,主要探讨了面向对象编程(Object-Oriented Programming,OOP)在Java语言中的应用。面向对象编程是现代软件开发中的核心思想,Java作为一门强类型、面向对象的语言,其...

    JAVA面向对象编程_孙卫琴.pdf

    面向对象编程(Object-Oriented Programming,简称 OOP)是一种程序设计思想,它将数据和操作数据的方法定义为统一的整体——对象(Object),并通过类(Class)来实现对象的创建。在Java语言中,面向对象编程的主要...

    国外数据结构和算法合集书籍的种子

    Data Structures and Algorithms with Object-Oriented Design Patterns in Java - Bruno R. Preiss Data Structures and Algorithms with Object-Oriented Design Patterns in Python - Bruno R. Preiss Data ...

    CSharp 3.0 With the .NET Framework 3.5 Unleashed(english)

    as well as advanced topics related to object-oriented programming and the use of the .NET Framework 3.5. ### 1. Introduction to the .NET Platform - **What is .NET?** .NET is a comprehensive ...

    object-oriented-programming:回购编程语言I类

    面向对象程序设计(Object-Oriented Programming,OOP)是一种广泛应用的编程范式,它将现实世界中的概念如“对象”、“类”、“继承”、“封装”和“多态”等映射到软件开发中,使得代码更易于理解和维护。在Java这...

    西安电子科技大学 JAVA 课件

    3. **J0903_OOP.pdf** - OOP是Object-Oriented Programming的缩写,这部分内容会深入探讨面向对象编程,包括类、对象、封装、继承、多态等核心概念。 4. **J0904_Init%26Cleanup%26%26HidingImpl.pdf** - 这部分...

    Csharp.6.for.Programmers.6th.Edition

    You’ll enjoy the treatment of object-oriented programming and an object-oriented design/UML® ATM case study, including a complete C# implementation. When you’ve mastered the book, you’ll be ready...

    Java 9 for Programmers (Deitel Developer Series) 完整高清azw3版

    You’ll enjoy the Deitels’ classic treatment of object-oriented programming and the object-oriented design ATM case study, including a complete Java implementation. When you’re finished, you’ll ...

    The_CSharp_Programming_Language_Third_Edition

    The C# project started almost ten years ago, in December 1998, with the goal of creating a simple, modern, object-oriented, and type-safe programming language for the new and yet-to-be-named .NET ...

    Python数据结构与算法 英文版

    1.Introduction 2.Algorithm Analysis 3.Asymptotic Notation 4.Foundational Data Structures ...17.Python and Object-Oriented Programming 18.Class Hierarchy Diagrams 19.Character Codes 20.References

    第3章-C#面向对象程序设计.ppt

    面向对象编程(Object-Oriented Programming,简称OOP)是一种基于对象概念的编程范式,C#语言就是一种支持OOP特性的编程语言。在C#中,面向对象编程主要涉及以下几个核心概念: 1. **类(Class)**:类是创建对象...

Global site tag (gtag.js) - Google Analytics