求JAVA大神!!!编写两个类Person和TestPerson
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求JAVA大神!!!编写两个类Person和TestPerson相关的知识,希望对你有一定的参考价值。
编写两个类Person和TestPerson,这两个类的基本描述如下:
(1). Person类具有缺省的访问权限;
具有私有类型的整型变量age(初值为8)、私有类型的浮点变量high(初值为1.4);
具有两个返回值为void类型的无参数方法displayAge, displayHigh,这两个方法的方法功能是通过System.out.println 显示相应的成员变量;
TestPerson类具有公共的访问权限;它具有唯一的main方法, 在该main方法中定义了Person类的一个对象person, 并调用该对象的方法displayAge,displayHigh。
编写上述程序,并编译执行。
(2). 在上述程序基础上,添加通过对象person来直接对其成员变量age和high分别赋值18和1.7,看程序编译执行的效果
private int age = 8;
private double high = 1.4;
void displayAge()
System.out.println(age);
void displayHign()
System.out.println(high);
public class TestPerson
public static void main(String[] args)
Person p = new Person();
p.displayAge();
p.displayHign();
第二题不能直接给Person类的私有成员变量赋值。用private修饰的变量一般外界要访问可以在Person类
中添加get和set方法。 参考技术A System.out.println("Q=563337217");
以上是关于求JAVA大神!!!编写两个类Person和TestPerson的主要内容,如果未能解决你的问题,请参考以下文章
JAVA中service实现类中的@Service(demoService)是啥意思? 求哪位大神指点
用java编写两个类,person和student, Person类有三个成员变量name,sex,age,一个构造方法实现对其成员变