Everything Is an Object


You manipulate objects with references

  • Each programming language has its own means of manipulating elements in memory.
  • Are you manipulating the element directly, or are you dealing with some kind of indirect representation (a pointer in C or C++) that must be treated with a special syntax?
  • Although you treat everything as an object, the identifier you manipulate is actually a “reference” to an object.
  • Have a reference doesn’t mean there’s necessarily an object connected to it.

You must create all the objects

  • The keyword new says, “Make me a new one of these objects.”

Where storage lives

  • There are five different places to store data:

    1.Registers: registers are allocated as they are needed.

    2.The Stack: The Java system must know, while it is creating the program, the exact lifetime of all the items that are stored on the stack. Java objects themselves are not placed on the stack.

    3.The heap: The compiler doesn’t need to know how long that storage must stay on the heap. Whenever you need an object, you simply write the code to create it by using new, and the storage is allocated on the heap when that code is executed.

    4.Constant storage: Constant values are often placed directly in the program code.

    5.Non-RAM storage:If data lives completely outside a program, it can exist while the program is not running, outside the control of the program. The two primary examples of this are Streamed Objects and Persistent Objects.

Special case: primitive types

  • Instead of creating the variable by using new, an “automatic” variable is created that is not a reference.
  • These sizes don’t change from one machine architecture to another as they do in most languages.
  • All numeric types are signed.
  • The “wrapper” classes for the primitive data types allow you to make a non-primitive object on the heap to represent that primitive type.
  • Java includes two classes for performing high-precision arithmetic: BigInteger and BigDecimal. Neither one has a primitive analogue.
  • You can do anything with a BigInteger or BigDecimal that you can with an int or float, it’s just that you must use method calls instead of operators.

Arrays in Java

  • If a program accesses the array outside of its memory block or uses the memory before initialization, there will be unpredictable results.
  • A Java array is guaranteed to be initialized and cannot be accessed outside of its range.
  • When you create an array of objects, you are really creating an array of references, and each of those references is automatically initialized to a special value with its own keyword: null.

You never need to destroy an object

Scoping

  • A variable defined within a scope is available only to the end of that scope.
  • The C and C++ ability to “hide” a variable in a larger scope is not allowed in Java.

Scope of Objects

  • The reference s vanishes at the end of the scope. However, the String object that s was pointing to is still occupying memory.
  • Java has a garbage collector, which looks at all the objects that were created with new and figures out which ones are not being referenced anymore.

Creating new data types: class

Fields and methods

  • You can put two types of elements in your class: fields ( data members), and methods(member functions).
  • A field is an object of any type that you can talk to via its reference, or a primitive type.
  • If it is a reference to an object, you must initialize that reference to connect it to an actual object.

Default values for primitive members

  • The default values are only what Java guarantees when the variable is used as a member of a class.
  • This ensures that member variables of primitive types will always be initialized.

Methods, arguments, and return values

  • Methods in Java determine the messages an object can receive.
  • The method name and argument list ( the signature of the method) uniquely identify that method.
  • This act of calling a method is commonly referred to as sending a message to an object.
  • What you must specify in the argument list are the types of the objects to pass in and the name to use for each one.
  • As in any situation in Java where you seem to be handing objects around, you are actually passing references.
  • A program is just a bunch of objects with methods that take other objects as arguments and send messages to those other objects.

Building a Java program

Name visibility

  • To produce an unambiguous name for a library, the Java creators want you to use your Internet domain name in reverse since domain names are guaranteed to be unique.
  • This mechanism means that all of your files automatically live in their own namespaces, and each class within a file must have a unique identifier.

Using other components

  • import tells the compiler to bring in a package, which is a library of classes.

The static keywords

  • You want to have only a single piece of storage for a particular field, or you need a method that isn’t associated with any particular object of this class.
  • When you say something is static, it means that particular field or method is not tied to any particular object instance of that class.
  • Class Data and Class Methods, meaning that the data and methods exist only for the class as a whole, and not for any particular objects of the class.
  • Since static methods don’t need any objects to be created before they are used, they cannot directly access non-static members or methods by simply calling those other members without referring to a named object.
  • An important use of static for methods is to allow you to call that method without creating an object.

Your first Java program

  • When you’re creating a standalone program such as this one, one of the classes in the file must have the same name as the file.That class must contain a method called main( ).
  • The args won’t be used in this program, but the Java compiler insists that they be there because they hold the arguments from the command line.

Comments and embedded documentation.

Comment documentation

  • Because of Javadoc, you have a straightforward standard for creating documentation, so you can expect or even demand documentation with all Java libraries.

Syntax

  • Javadoc will process comment documentation for only public and protected members.

Embedded HTML

  • Javadoc passes HTML commands through to the generated HTML document.

Thinking in Java--笔记(2)的更多相关文章

  1. Effective Java笔记一 创建和销毁对象

    Effective Java笔记一 创建和销毁对象 第1条 考虑用静态工厂方法代替构造器 第2条 遇到多个构造器参数时要考虑用构建器 第3条 用私有构造器或者枚举类型强化Singleton属性 第4条 ...

  2. java笔记00-目录

    --2013年7月26日17:49:59 学习java已久,趁最近有空,写一个总结: java笔记01-反射:

  3. java笔记整理

    Java 笔记整理 包含内容     Unix Java 基础, 数据库(Oracle jdbc Hibernate pl/sql), web, JSP, Struts, Ajax Spring, E ...

  4. 转 Java笔记:Java内存模型

    Java笔记:Java内存模型 2014.04.09 | Comments 1. 基本概念 <深入理解Java内存模型>详细讲解了java的内存模型,这里对其中的一些基本概念做个简单的笔记 ...

  5. servlet(6) - servlet总结 - 小易Java笔记

    垂阅前必看: 这都是我总结的我觉得是学习servlet应该掌握的,我在学习期间也做了一个博客项目来让所学的知识得以巩固.下面就是博客项目链接.前面的servlet相关的笔记总汇,还有就是我把觉得在学习 ...

  6. Java笔记 —— 继承

    Java笔记 -- 继承 h2{ color: #4ABCDE; } a{ text-decoration: none!important; } a:hover{ color: red !import ...

  7. Java笔记 —— 方法重载和方法重写

    Java笔记 -- 方法重载和方法重写 h2{ color: #4ABCDE; } a{ text-decoration: none !important; } a:hover{ color: red ...

  8. Java笔记 —— 初始化

    Java笔记 -- 初始化 h2{ color: #4ABCDE; } a{ text-decoration: none !important; } a:hover{ color: red !impo ...

  9. Java笔记 —— this 关键字

    Java笔记 -- this 关键字 h2{ color: #4ABCDE; } a{ color: blue; text-decoration: none; } a:hover{ color: re ...

  10. Java 笔记 —— java 和 javac

    Java 笔记 -- java 和 javac h2{ color: #4ABCDE; } a{ text-decoration: none !important; } a:hover{ color: ...

随机推荐

  1. Experimental Educational Round: VolBIT Formulas Blitz

    cf的一次数学场... 递推 C 题意:长度<=n的数只含有7或8的个数 分析:每一位都有2种可能,累加不同长度的方案数就是总方案数 组合 G 题意:将5个苹果和3个梨放进n个不同的盒子里的方案 ...

  2. iOS 含有 中文的URL 转码问题

    非ARC模式下: - (NSString *)encodeToPercentEscapeString: (NSString *) input { NSString *outputStr = (NSSt ...

  3. poj2524-Ubiquitous Religions

    C - Ubiquitous Religions Time Limit: 5000 MS Memory Limit: 65536 KB 64-bit integer IO format: %I64d ...

  4. hive 记事本

    hive 0.12 load data overwrite 直接覆盖了数据,不进回收站..... 手动load data 不加overwrite

  5. 【BZOJ】1124: [POI2008]枪战Maf

    题意 \(n(n < 1000000)\)个人,每个人\(i\)指向一个人\(p_i\),如果轮到\(i\)了且他没死,则他会将\(p_i\)打死.求一种顺序,问死的人最少和最多的数目. 分析 ...

  6. CF 346B. Lucky Common Subsequence(DP+KMP)

    这题确实很棒..又是无想法..其实是AC自动机+DP的感觉,但是只有一个串,用kmp就行了. dp[i][j][k],k代表前缀为virus[k]的状态,len表示其他所有状态串,处理出Ac[len] ...

  7. 【BZOJ3207】花神的嘲讽计划I 可持久化线段树/莫队

    看到题目就可以想到hash 然后很自然的联想到可持久化权值线段树 WA:base取了偶数 这道题还可以用莫队做,比线段树快一些 可持久化线段树: #include<bits/stdc++.h&g ...

  8. C#_数据转换 实用方法

    [String转Array]string str = "123asd456asd789";单字符: string[] a0 = str.Split('a');多字符: string ...

  9. HTML5中video 和 ogg

    HTML5中 的ogg 从网上学习HTML5之video时看到了下面的代码,不太清楚ogg是什么,于是搜索了一些知识点供了解.

  10. Springmvc+Hibernate在Eclipse启动Tomcat需要很长时间的解决方法

    最近在学习SpringMvc开发,有一个提问困扰了很久,就是在Eclipse启动Tomcat需要很长时间,大概要1分多钟. 启动日志: 九月 08, 2016 8:59:01 下午 org.apach ...