当前位置: 技术问答>java相关
Java中的类在Jbuilder7中如何运行?
来源: 互联网 发布时间:2015-09-23
本文导语: 我现在有一个类 //scoreDemo.java package com.borland.samples.welcome; class Student{ int Score1; String Lesson1; void set_score(int score1){ Score1=score1; } void set_lesson(String lesson1){ Lesson1=lesson1; } void show_score(){ System.out.println("The sco...
我现在有一个类
//scoreDemo.java
package com.borland.samples.welcome;
class Student{
int Score1;
String Lesson1;
void set_score(int score1){
Score1=score1;
}
void set_lesson(String lesson1){
Lesson1=lesson1;
}
void show_score(){
System.out.println("The score of"+Lesson1+"is:"+Score1);
}
}
class scoreDemo{
public static void main(String args[]){
Student student=new Student();
student.set_score(85);
student.set_lesson("Mathematics");
student.show_score();
}
}
请问
将该程序放在Jbuilder7中的什么地方,才能运行此程序,并在什么地方可看到结果?
谢谢!
//scoreDemo.java
package com.borland.samples.welcome;
class Student{
int Score1;
String Lesson1;
void set_score(int score1){
Score1=score1;
}
void set_lesson(String lesson1){
Lesson1=lesson1;
}
void show_score(){
System.out.println("The score of"+Lesson1+"is:"+Score1);
}
}
class scoreDemo{
public static void main(String args[]){
Student student=new Student();
student.set_score(85);
student.set_lesson("Mathematics");
student.show_score();
}
}
请问
将该程序放在Jbuilder7中的什么地方,才能运行此程序,并在什么地方可看到结果?
谢谢!
|
加一個類文件,設置Run參數,只要編譯能過,就ok了!
結果就在運行窗口中看得見!
結果就在運行窗口中看得見!
|
你先建一个工程,然后把你的java文件加入到工程里,就可以执行了!