标签:http lazy 面向 size image 定义 example 一个 static
1 package 面向对象;
2
3
4
5 /*
6 * 对象的创建与使用
7 * 格式:类名 对象名称 = new 类名();
8 * */
9
10
11
12 class Person{
13 int age =10;//类中定义的变量被称为成员变量
14 void speak()//成员方法
15 {
16
17 System.out.println("大家好,我今年"+age+"岁");
18
19 }
20
21 }
22 public class Example01 {
23
24
25 public static void main(String[] args) {
26 Person p1 = new Person();//创建第一个Person对象
27 Person p2 = new Person();//创建第二个Person对象
28
29 p1.age=18;//为age属性赋值
30 p1.speak();//调用对象的方法
31 p2.speak();
32
33 }
34
35
36 }
结果如下:
package 面向对象;
/* * 对象的创建与使用 * 格式:类名 对象名称 = new 类名(); * */
class Person{int age =10;//类中定义的变量被称为成员变量void speak()//成员方法{//int age = 60;//方法内部定义的变量被称为局部变量System.out.println("大家好,我今年"+age+"岁");}}public class Example01 {public static void main(String[] args) {Person p1 = new Person();//创建第一个Person对象Person p2 = new Person();//创建第二个Person对象p1.age=18;//为age属性赋值p1.speak();//调用对象的方法p2.speak();}}
标签:http lazy 面向 size image 定义 example 一个 static
原文地址:https://www.cnblogs.com/13chen14/p/14782710.html