Java面向对象4----static关键字
Posted iostreamzl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java面向对象4----static关键字相关的知识,希望对你有一定的参考价值。
文章目录
static概述
static即能定义属性,也能定义方法
static属性和方法最好的使用方式是由类名调用,static属性不受对象实例化的限制,也就是说没有对象也是可以使用static属性的。static属性相当于所有对象的共同属性,用在对象之间有一个属性具有相同的值的时候。
对static属性的修改是牵一发而动全身的。
static属性
实例:学生信息类。学生的学校可以说是一个公共属性,使用可以声明为static属性(未封装)
class Student
// 定义属性
private String name; // 姓名
// static属性通过 类名.属性名 来访问修改
static String school = "cczu"; // static属性。可以理解为所有的对象共有的属性
public Student(String name)
this.name = name;
// 测试方法
public void uselessFunc()
System.out.println("无用的方法调用了");
// 返回信息
public String getInfo()
return "姓名:" + this.name + "\\t学校: " + Student.school;
public class Demo
public static void main(String[] args)
Student stu1 = new Student("stu1");
Student stu2 = new Student("stu2");
Student stu3 = new Student("stu3");
System.out.println(stu1.getInfo());
System.out.println(stu2.getInfo());
System.out.println(stu3.getInfo());
System.out.println("**************************");
// 任意一个对象修改static属性,观察结果
stu1.school = "HHHH";
System.out.println(stu1.getInfo());
System.out.println(stu2.getInfo());
System.out.println(stu3.getInfo());
上面的school属性没有进行封装,能够在外部访问,对于这样的公共属性是很不安全的。
static方法
下面将static属性封装,并使用static来声明该属性的setter,getter方法。
class Student
// 定义属性
private String name; // 姓名
// static属性通过 类名.属性名 来访问修改
private static String school = "cczu"; // static属性。可以理解为所有的对象共有的属性
public Student(String name)
this.name = name;
// 对static属性的修改需要定义static方法
public static void setSchool(String school)
Student.school = school;
public static String getSchool()
return Student.school;
// 测试方法
public void uselessFunc()
System.out.println("无用的方法调用了");
// 返回信息
public String getInfo()
return "姓名:" + this.name + "\\t学校: " + Student.school;
public class Demo
public static void main(String[] args)
Student stu1 = new Student("stu1");
Student stu2 = new Student("stu2");
Student stu3 = new Student("stu3");
System.out.println(stu1.getInfo());
System.out.println(stu2.getInfo());
System.out.println(stu3.getInfo());
System.out.println("**************************");
// 任意一个对象修改static属性,观察结果
Student.setSchool("GGGG");
System.out.println(stu1.getInfo());
System.out.println(stu2.getInfo());
System.out.println(stu3.getInfo());
被封装后的属性,不能再通过实例直接访问,也不能通过实例调用setter,getter方法阿来修改或获得相应的值,只能通过类名来调用setter,getter方法来操作。
static方法与非static方法
在Java中规定
- static方法只能调用static方法或属性
- 非static方法能调用static方法和属性
- static方法的调用,使用 类名.方法名() 的方式调用
首先来看普通方法调用static方法
class Student
// 定义属性
private String name; // 姓名
// static属性通过 类名.属性名 来访问修改
private static String school = "cczu"; // static属性。可以理解为所有的对象共有的属性
public Student(String name)
this.name = name;
// 测试方法
public void uselessNormalFunc()
System.out.println("无用的普通方法调用了");
Student.uselessStaticFunc();
public static void uselessStaticFunc()
System.out.println("无用的static方法调用了");
// 返回信息
public String getInfo()
return "姓名:" + this.name + "\\t学校: " + Student.school;
public class Demo
public static void main(String[] args)
new Student("demo").uselessNormalFunc();
static方法调用普通方法
public static void uselessStaticFunc()
System.out.println("无用的static方法调用了");
this.uselessNormalFunc();
public class Demo
public static void main(String[] args)
Student.uselessStaticFunc();
static实例
利用static属性,实现学生人数的统计
class Student
// 定义属性
private String name; // 姓名
// static属性通过 类名.属性名 来访问修改
private static String school = "cczu"; // static属性。可以理解为所有的对象共有的属性
private static int count = 0;
public Student(String name)
this.name = name;
Student.count++;
public Student()
Student.count++;
public static int getCount()
return Student.count;
// 返回信息
public String getInfo()
return "姓名:" + this.name + "\\t学校: " + Student.school;
public class Demo
public static void main(String[] args)
for (int i = 0; i < 10; i++)
new Student();
System.out.println("学校共有学生 " + Student.getCount() + " 人");
以上是关于Java面向对象4----static关键字的主要内容,如果未能解决你的问题,请参考以下文章