1:參数传递的值传递与引用传递

A:值传递:基本数据类型传递都是值传递



B:引用传递(地址传递):对象数据类型都是引用传递。

2:类变量与成员变量(实例变量,对象变量)

类变量:通过类名调用,类变量被全部的实例共享。



final static int MAX = 20;//Java中定义常量







对象变量:通过对象调用(对象必须new出来)。

3:类方法与成员方法(实例方法,对象方法)

类方法:通过类名调用,在类方法中不能使用thiskeyword。

由于this代表当前对象。

成员方法:通过对象调用(对象必须new出来)。

4:

  构造方法

  销毁方法(finalize)

销毁方法是在对象被销毁的时候进行调用的。

当一个对象在堆区没有一个明白的引用指向它的时候,Java虚

拟机觉得该对象是没用的。

垃圾回收器是用于回收堆区分配的对象。

垃圾回收器仅仅会回收3次的

  的内存。

垃圾回收器是虚拟机自己主动调用的。(堆区内存不够的情况下调用)



  可是能够通过System.gc()来强制执行垃圾回收器。

5:static静态块与对象块

寻找main方法--->载入类--->载入类的静态块代码(仅仅初始化一次)



--->载入类的静态方法和静态变量(仅仅初始化一次)---->对象块方法

--->对象的构造方法--->调用对象的方法--->运行对象的销毁方法。

//成绩类
class Score
{
int english;
int math;
int chinese;
Score(){ } Score(int english,int math,int chinese){
this.english = english;
this.math = math;
this.chinese = chinese;
}
} class Student{
int stuid;
String stuname;
String stusex;
//将成绩类做为学生类的一个属性。 Score score; public Student(Score score){
this.score = score;
} public int getTotalScore(){
return this.score.english +this.score.math +this.score.chinese;
} public void changeScore(Score score){
score.chinese = 0;
score.math = 0;
}
} public class Test_02{
public static void main(String args[]){
Score score_one = new Score(70,60,65);
//score_one.english = 70;
//score_one.math = 60;
//score_one.chinese = 65; Score score_two = new Score();
score_two.english = 11;
score_two.math = 12;
score_two.chinese = 13; Score score_three = new Score(45,46,47);
//score_three.english = 45;
//score_three.math = 46;
//score_three.chinese = 47; Student stu_one = new Student(score_three);
Student stu_two = new Student(score_two);
Student stu_three = new Student(score_one); /*
System.out.println(stu_one.getTotalScore());
System.out.println(stu_two.getTotalScore()); score_three.english = 70; stu_one.score.math = 23; System.out.println(stu_one.getTotalScore());
System.out.println(stu_two.getTotalScore()); */
System.out.println(stu_one.getTotalScore());//138 stu_one.changeScore(score_two); System.out.println(stu_one.getTotalScore());//138 stu_one.changeScore(score_three); System.out.println(stu_one.getTotalScore());//45 System.out.println(stu_two.getTotalScore());
}
}
public class Test_03
{
int id;
final static int MAX = 20; public static void main(String args[]){
//Test_03 test = new Test_03();
//System.out.println(test.MAX);
System.out.println(Test_03.MAX); }
}
class Person
{
int personid;
String personname; public Person(){
System.out.println("对象的构造方法");
this.personid = 1;
this.personname = "中国人";
} public void method(){
System.out.println("运行方法");
} public void finalize(){
System.out.println("对象被销毁了");
this.personid = 0;
this.personname = null;
}
}
public class Test_04
{
public static void main(String args[]){
Two(); System.gc();
} public static void Two(){
//创建对象
Person person = new Person(); //用对象
person.method();
} }
public class Test_05
{
//载入类时。最早运行的一块初始化内容。 static{
System.out.println("静态块");
} //载入类时,静态方法与静态变量都已经放到内存的静态区域中了。 public static void staticMethod(){
System.out.println("static方法");
} //对象块的内容,在对象初始化之前运行的内容
{
System.out.println("对象块方法");
}
//对象的构造方法
public Test_05(){
System.out.println("构造方法");
} public void objectMethod(){
System.out.println("对象方法");
} public static void main(String args[]){
Test_05.staticMethod(); Test_05 test = null;
test = new Test_05();
test.objectMethod(); Test_05 test2 = null;
test2 = new Test_05();
test2.objectMethod();
}
}
class Two
{
static{
System.out.println("Two的静态块");
}
}

J2SE基础:2.对象的创建与使用的更多相关文章

  1. [ Java学习基础 ] Java对象的创建和销毁

    类实例化可生成对象,实例方法就是对象方法,实例变量就是对象属性.一个对象的生命周期包括三个阶段:创建.使用和销毁. 创建对象 创建对象包括两个步骤:声明和实例化. 声明 声明对象与声明普通变量没有区别 ...

  2. [C++基础]关于对象的创建及内存分配

    测试: #include <stdio.h>#include <QDebug> class KPoint{public: KPoint(int x, int y){ nx = ...

  3. Java基础(2)面向对象和封装,对象的创建和使用、java对象的内存图

    1 类和对象 类:是一类事物的描述,抽象的.猫 对象:是一类事物的实例,具体的.某只猫 2 类的定义 成员变量和成员方法 //定义一个学生类 public class Student { //成员变量 ...

  4. J2SE基础题

    J2SE基础 八种基本数据类型的大小,以及他们的封装类.(有的也说是9中基本数据类型,包括了void) 基本类型 大小(字节) 默认值 封装类 byte 1 (byte)0 Byte short 2 ...

  5. JavaScript 基础回顾——对象

    JavaScript是基于对象的解释性语言,全部数据都是对象.在 JavaScript 中并没有 class 的概念,但是可以通过对象和类的模拟来实现面向对象编程. 1.对象 在JavaScript中 ...

  6. 图解JAVA对象的创建过程

    前面几篇博文分别介绍了JAVA的Class文件格式.JVM的类加载机制和JVM的内存模型,这里就索性把java对象的创建过程一并说完,这样java对象的整个创建过程就基本上说明白了(当然你要有基础才能 ...

  7. python基础——获取对象信息

    python基础——获取对象信息 当我们拿到一个对象的引用时,如何知道这个对象是什么类型.有哪些方法呢? 使用type() 首先,我们来判断对象类型,使用type()函数: 基本类型都可以用type( ...

  8. SQL Server 2008空间数据应用系列四:基础空间对象与函数应用

    原文:SQL Server 2008空间数据应用系列四:基础空间对象与函数应用 友情提示,您阅读本篇博文的先决条件如下: 1.本文示例基于Microsoft SQL Server 2008 R2调测. ...

  9. VBS基础篇 - 对象(1) - Class对象

    VBS基础篇 - 对象(1) - Class对象   相信对JAVA有一定了解的朋友一定对类这个名词不陌生,但是大家可能没有想过在VBS中使用Class类吧,其实Class类在自动化测试中是相当常用的 ...

随机推荐

  1. spring boot整合mail

    1.添加依赖 </dependency> <dependency> <groupId>org.springframework.boot</groupId> ...

  2. JavaScript总结(3)

    第3章 获取用户的输入 <script>10 intA=prompt("请输入第一个数字","");11 intB=prompt("请输入 ...

  3. 《剑指offer》二叉树的镜像

    一.题目描述 操作给定的二叉树,将其变换为源二叉树的镜像. 二.输入描述 二叉树的镜像定义:源二叉树 8 / \ 6 10 / \ / \ 5 7 9 11 三.输出描述 镜像二叉树 8 / \ 10 ...

  4. rem自适应布局-移动端自适应必备:flexible.js

    http://caibaojian.com/flexible-js.html

  5. Rain and Umbrellas(dp)

    题目链接 http://codeforces.com/problemset/problem/988/F 令dp[i][j]为走到目标为i处,手里拿着第j把伞,同时注意,在某处可能存在不止一把伞 #in ...

  6. mac、windows如何强制关闭tomcat进程

    方式1.打开cmd,或mac的终端,输入: ① ps aux | grep "tomcat",找到响应的进程id: ② kill -9 查询的id,来强制关闭进程 方式2:wind ...

  7. vue项目的一些最佳实践提炼和经验总结

    项目组织结构 ajax数据请求的封装和api接口的模块化管理 第三方库按需加载 利用less的深度选择器优雅覆盖当前页面UI库组件的样式 webpack实时打包进度 vue组件中选项的顺序 路由的懒加 ...

  8. caioj 1083 动态规划入门(非常规DP7:零件分组)(LIS)

    这道题题目给的顺序不是固定的 所以一开始要自己排序,按照w来排序 后来只要看l就可以了 然后求最长下降子序列即可(根据那个神奇的定理,LIS模板里有提到) #include<cstdio> ...

  9. 洛谷 P2083 找人

    P2083 找人 题目背景 无 题目描述 小明要到他的同学家玩,可他只知道他住在某一单元,却不知住在哪个房间.那个单元有N层(1,2……N),每层有M(1,2……M)个房间. 小明会从第一层的某个房间 ...

  10. 国庆 day 3 下午

    a[问题描述] 你是能看到第一题的 friends 呢. ——hja 给你一个只有小括号和中括号和大括号的括号序列,问该序列是否合法.[输入格式] 一行一个括号序列.[输出格式] 如果合法,输出 OK ...