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

Java的一个关于类的基础程序.ModifyclassGradeBook(Fig.3.10)asfollows:a)IncludeaStringinstancevariablethatrepresentsthenameofthecourse’sinstructor.b)Provideasetmethodtochangetheinstructor’snameandagetmethod

题目详情
Java的一个关于类的基础程序.
Modify class GradeBook (Fig.3.10) as follows:
a) Include a String instance variable that represents the name of the course’s instructor.
b) Provide a set method to change the instructor’s name and a get method to retrieve it.
c) Modify the constructor to specify two parameters—one for the course name and one
for the instructor’s name.
d) Modify method displayMessage to output the welcome message and course name,fol-
lowed by "This course is presented by:" and the instructor’s name.
Use your modified class in a test application that demonstrates the class’s new capabilities.
Fig.3.10中的程序:
public class GradeBook
{
private String courseName;
}
public GradeBook( String name )
{
courseName = name;
}
public void setCourseName( String name )
{
courseName = name;
}
public String getCourseName()
{
return courseName;
}
public void displayMessage()
{ System.out.printf( "Welcome to the grade book for\n%s!\n",
getCourseName() );
}
}
.我一开始先把如上的程序打上去,但都运行不了.然后就无力了.
▼优质解答
答案和解析
第三行多了个花括号吧 而且没有main()方法
改成这样应该是你要的结果
public class Console{
private String courseName;
public Console( String name ){
courseName = name;
}
public void setCourseName( String name ){
courseName = name;
}
public String getCourseName(){
return courseName;
}
public void displayMessage(){
System.out.printf( "Welcome to the grade book for\n%s!\n",getCourseName() );
}
public static void main(String[] args){
new Console("网友").displayMessage();
}
}
看了 Java的一个关于类的基础程...的网友还看了以下:

如图为中心法则图解.下列有关的叙述中,错误的是()A.过程a只发生在有丝分裂的间期B.过程b和c为  2020-05-13 …

基因工程的基本操作程序主要包括四个步骤,其中基因工程的核心是()A、目的基因的获取B、基因表达载体  2020-06-27 …

有关基因工程的叙述,正确的是()A.基因工程育种的优点之一是目的性强B.基因工程是细胞水平上的生物工  2020-11-10 …

图中a、b、c表示生物体内三种生理过程.下列叙述正确的是()A.a过程发生的唯一场所是细胞核B.转运  2020-11-21 …

图是某对血型为A型和B型的夫妇生出孩子的可能基因型的遗传图解,图示过程与基因传递所遵循遗传规律的对应  2020-11-23 …

下列关于基因工程的叙述不正确的是()A.基因工程的生物学原理是基因重组B.通过基因工程技术能够定向改  2020-12-05 …

下列有关基因工程的叙述中,正确的是()A.基因工程是细胞水平上的生物工程B.基因工程的目的是获得基因  2020-12-06 …

下列有关基因工程的叙述,不正确的是()A.基因工程是在分子水平上进行设计施工的B.基因工程的最终目的  2020-12-18 …

下列关于基因工程及其产品的说法中,错误的是()A.基因工程的核心是基因表达载体的构建B.基因工程可定  2020-12-21 …

下列关于基因工程的叙述,正确的是()A.基因工程经常以抗菌素抗性基因为目的基因B.细菌质粒是基因工程  2021-01-01 …