早教吧 育儿知识 作业答案 考试题库 百科 知识分享

急,写一个java小程序实现pakage:family,内含三个类:son,mother,father,接下:接上:1.在son中访问father类,用import2.每个类实现(获取,修改)age功能不好意思,我想要这种形式的,son,father,mother只要写一

题目详情
急,写一个java小程序实现pakage:family,内含三个类:son,mother,father,接下:
接上:1.在son中访问father类,用import
2.每个类实现(获取,修改)age功能
不好意思,我想要这种形式的,son,father,mother只要写一个就行,包是family,只要求在开头加一个import语句:类似import java.util.Data,就是实现分层java-util-Data,所以应该是family-son(family-father,family-mother)这种,文件格式类似于
package Area;
public class Square
{ static float 长;
\x05 float 宽;
\x05Square(float x,float y){
\x05\x05长=x;
\x05\x05this.宽=y;}
\x05public static void main(String[] args) {
\x05\x05Square S1=new Square(2.0f,4.0f);
\x05\x05Square.长=4;
\x05\x05System.out.println("S1的长:"+S1.获取长 ());
\x05\x05}
}
▼优质解答
答案和解析
father类中有说明方法需要son来调用的?
1.在son中访问father类,用import
这是什么意思?