- 1、本文档共18页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第3章习题解答
1.如何定义方法?在面向对象程序设计中方法有什么作用?
答:方法的定义包括方法名、方法形参、方法的返回值类型和方法体四部分,方法只能在类中定义。方法是对象的动态特征的描述,对象通过方法操作属性,进而改变对象的状态,完成程序所预期的功能。
2.定义一个Dog类,有名字、颜色、年龄等属性,定义构造方法用来初始化类的这些属性,定义方法输出Dog的信息。编写应用程序使用Dog。
答:
public class Dog{
private String name;
private String color;
private String age;
Dog(String n,String c,String a){
name = n; color = c; age = a;
}
public String toString() {
return name + , + color + , + age;
}
public static void main(String args[]) {
Dog dog = new Dog(小白, 白色, 2岁);
System.out.println(dog.toString());
}
}
3.什么是访问控制修饰符?修饰符有哪些种类?它们各有何作用?
答:访问控制修饰符是对类、属性和方法的访问权限的一种限制,不同的修饰符决定了不同的访问权限。访问控制修饰符有3个:
属性和方法 类
public
默认
public
A
B
protected
B + C
B
默认
B
B
private
D
D
B:包中的类
C:所有子类
D:本类
A:所有类
4.阅读程序,写出程序的输出结果
class A{
private int privateVar;
A(int _privateVar){ privateVar=_privateVar;
}
boolean isEqualTo(A anotherA){
if(this.privateVar == anotherA.privateVar)
return true;
else
return false;
}
}
public class B{
public static void main(String args[]){
A a = new A(1);
A b = new A(2);
System.out.println(a.isEqualTo(b));
}
}
程序的输出结果为: false
5.阅读程序,写出程序的输出结果
public class Test {
public static void main(String[] args) {
int x;
int a[] = { 0, 0, 0, 0, 0, 0 };
calculate(a, a[5]);
System.out.println(the value of a[0] is + a[0]);
System.out.println(the value is a[5] is + a[5]);
}
static int calculate(int x[], int y) {
for (int i = 1; i x.length; i++)
if (y x.length)
x[i] = x[i - 1] + 1;
return x[0];
}
}
程序的输出结果为:
the value of a[0] is 0
the value is a[5] is 5
6.阅读程序,写出程序的输出结果
public class Test {
public static void main(String[] args) {
String str1 = new String(Java);
String str2 = new String(Java);
System.out.println(str1 == str2);
}
}
程序的输出结果为:
false
7.阅读下列程序,程序中已经指明错误位置,请说出错误原因。
1.
package sample;
class A {
private int num;
A(){
num=0;
}
int get(){ return num; }
}
class Z {
public static void main(String[] args) {
文档评论(0)