1、请按照以下要求设计一个学生类Student,并进行测试。
要求如下:
1)Student类中包含姓名、成绩两个属性
2)分别给这两个属性定义两个方法,一个方法用于设置值,另一个方法用于获取值.
3)Student类中定义一个无参的构造方法和一个接收两个参数的构造方法,两个参数分别为姓名和成绩属性赋值
4)在测试类中创建两个Student对象,一个使用无参的构造方法,然后调用方法给姓名和成绩赋值,一个使用有参的构 造方法,在构造方法中给姓名和成绩赋值
public class Student { String name = new String("该学生没有命名"); double result; public Student(){ } public Student(String n,double result){ this.name = n; this.result = result; } void set(String n,double result){ this.name = n; this.result = result; } void get(){ System.out.println("该学生的姓名:"+name); System.out.println("该学生的成绩:"+result); } }
public class Work10 { public static void main(String[] args) { // TODO Auto-generated method stub Student a = new Student(); a.set(" 张三", 19); a.get(); Student b = new Student("李四",87); b.get(); } }
2、请编写一个程序,该程序由两个类组成,一个Person类,一个Test类。在Person类中定义一个无参构造方法,里面 输出一句话:”无参的构造方法被调用了...”。并在测试类中进行测试。
public class Person { public Person(){ System.out.println("无参的构造方法被调用了······"); } }
public class Test { public static void main(String[] args) { // TODO Auto-generated method stub Person a = new Person(); } }
3. 使用java类描述一个车类,车都具备名字、颜色两个属性,还具备跑的功能。 请设计一个汽车类Car,该类中包含 两个属性姓名(name)、颜色(color),一个用于描述汽车跑的run()方法。
public class Car { String name = new String("车的品牌:"); String color = new String("车的颜色:"); public Car(String name,String color){ this.name = name; this.color = color; run(); } public void run(){ System.out.println(color+"的"+name+"已经驶出!"); } }
public class Test { public static void main(String[] args) { // TODO Auto-generated method stub new Car("玛莎拉蒂"," 粉色"); new Car("迈巴赫"," 绿色"); } }
4. 编写一个类,类中定义一个静态方法,用于求两个整数的和。 请按照以下要求设计一个测试类Demo,并进行测试。 要求如下:
1)Demo类中有一个静态方法get(int a,int b)该方法用户返回参数a、b两个整数的和;
2)在main()方法中调用get方法并输出计算结果。
public class Demo { public static void main(String[] args){ int sum =getSum(10,20); System.out.println(sum); } public static int getSum(int a,int b){ int sum = a + b; return sum; } }
5.说一下什么是封装, 使用封装的好处。什么是get,set访问器
封装是将对象中的实现细节隐藏。不被外界所直接访问。
好处是可以提高代码的安全性
get访问器相当于一个无参数方法,该方法具有属性类型的返回值以及属性相同的修饰符,
而执行get访问器就是相当于读取了字段的值。需要注意的是,在get访问器中,返回值作为属性值提供给调用表达式。
set 访问器用于设置字段的值,这里需要使用一个特殊的值 value,它就是给字段赋的值。
在 set 访问器省略后无法在其他类中给字段赋值,因此也称为只读属性。