栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

java的类和对象

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

java的类和对象

package oop;


//学生类
public class Student {

	//属性:字段
	String name;
	int age;
	//非静态方法
	public  void study() {
		System.out.println(this.name+"在学习"); //该方法在Demo02中被调用
	}
}

对象(两个学生)

package oop;

public class Demo05 {

	public static void main(String[] args) {
		// TODO 自动生成的方法存根
		//类: 抽象的,实列化
		//类实列化之后就是返回自己的一个对象
		
		Student student1 = new Student();
		Student student2 = new Student();
		
		student1.name="小小";
		student1.age=5;
		
		System.out.println(student1.name+",今年"+student1.age+"岁");
		
		student2.name="小fu";
		student2.age=5;
		
		System.out.println(student2.name+",今年"+student2.age+"岁");
	}

}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/888749.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号