java新建類
1. java建立一個類
幫你寫個看看:
/**
*人類
*有『年齡』,『性別』,『身高』,『體重』,『職業』屬性
*@author
*
*/
publicclassPerson{
protectedintage;//年齡
protectedStringsex;//性別
protectedStringhigh;//身高
protectedStringweight;//體重
protectedStringskill;//職業
publicPerson(){
}
publicintgetAge(){
returnage;
}
publicvoidsetAge(intage){
this.age=age;
}
publicStringgetSex(){
returnsex;
}
publicvoidsetSex(Stringsex){
this.sex=sex;
}
publicStringgetHigh(){
returnhigh;
}
publicvoidsetHigh(Stringhigh){
this.high=high;
}
publicStringgetWeight(){
returnweight;
}
publicvoidsetWeight(Stringweight){
this.weight=weight;
}
publicStringgetSkill(){
returnskill;
}
publicvoidsetSkill(Stringskill){
this.skill=skill;
}
publicStringtoString(){
return"年齡:"+age+""+"性別:"+sex+""+"身高:"+high+""+"體重:"+weight+""+"職業:"+skill;
}
}
/**
*教師類有『學歷』屬性,『收入』屬性
*
*@authorAdministrator
*
*/
{
privateStringecation;//學歷
privateStringincome;//收入
publicTeacher(){
}
publicStringgetEcation(){
returnecation;
}
publicvoidsetEcation(Stringecation){
this.ecation=ecation;
}
publicStringgetIncome(){
returnincome;
}
publicvoidsetIncome(Stringincome){
this.income=income;
}
publicStringtoString(){
returnsuper.toString()+""+"學歷:"+ecation+""+"收入:"
+income;
}
}
/**
*學生類有『學歷』『是否在談戀愛』屬性
*
*@authorAdministrator
*
*/
{
privateStringecation;//學歷
privatebooleanisInLove;//是否在談戀愛
publicStudent(){
}
publicStringgetEcation(){
returnecation;
}
publicvoidsetEcation(Stringecation){
this.ecation=ecation;
}
publicbooleanisInLove(){
returnisInLove;
}
publicvoidsetInLove(booleanisInLove){
this.isInLove=isInLove;
}
publicStringtoString(){
returnsuper.toString()+""+"學歷:"+ecation+""+"是否在談戀愛:"
+isInLove;
}
}
/**
*官員類
*有收入屬性
*@authorAdministrator
*
*/
{
privateStringincome;//收入
publicOfficial(){
}
publicStringgetIncome(){
returnincome;
}
publicvoidsetIncome(Stringincome){
this.income=income;
}
publicStringtoString(){
returnsuper.toString()+""+"收入:"+income;
}
}
/**
*測試類
*@authorAdministrator
*
*/
publicclassTest{
publicstaticvoidmain(String[]args){
Personperson=newPerson();
person.setSex("男");
person.setAge(20);
person.setHigh("1.70m");
person.setWeight("128kg");
person.setSkill("神經病");
System.out.println("人類-"+person);//列印人
Teacherteacher=newTeacher();
teacher.setSex("男");
teacher.setAge(30);
teacher.setHigh("1.80m");
teacher.setWeight("128kg");
teacher.setSkill("教師");
teacher.setIncome("月薪10000");
teacher.setEcation("本科");
System.out.println("教師-"+teacher);//列印老師
Studentstudent=newStudent();
student.setSex("女");
student.setAge(10);
student.setHigh("1.60m");
student.setWeight("98kg");
student.setSkill("學生");
student.setEcation("小學");
student.setInLove(true);
System.out.println("學生-"+student);//列印學生
Officialofficial=newOfficial();
official.setSex("人妖");
official.setAge(50);
official.setHigh("1.40m");
official.setWeight("158kg");
official.setSkill("村長");
official.setIncome("月薪100000");
System.out.println("官員-"+official);//列印官員
}
}
//把每個類放到單獨的java文件裡面去
//運行Test類
//希望對你有幫助
2. java如何創建一個類的對象
Java創建一個類的對象通過new關鍵字創建:
語法如下:
類 對象 = new 類構造方法();
實例:
public class Person{
String name;
char sex;
int age;
public static void main(String[] args){
//在main方法完成Person類的對象person創建
Person person1 = new Person();
}
}
你明白了嗎?
3. java類創建方法
這哪是什麼類創建方法啊.就是一個方法.這個方法的作用是創建一個OrderModel 並賦值該類相應的欄位.
public OrderModel getOrderModel()
//方法名為:getOrderModel,返回類型OrderModel
{
OrderModel orderModel = new OrderModel();
//新建一個OrderModel
orderModel.setOrderId(orderId);
orderModel.setDate(date);
orderModel.setShipped(shipped);
orderModel.setPurchases(purchases); //設置相應欄位
return orderModel; //返回新建的orderModel
}
4. 如何在eclipse中新建Java類
步驟如下:
選中工程裡面的src文件夾, 右鍵滑鼠--選擇new -- 選擇class。
在彈出框中輸入class name 。
點擊OK即可添加類了。
針對問題中的具體要求, 新建了java工程後,可以直接復制Person.java文件, 然後選擇java工程的src目錄,按ctrl + v 進行粘貼。就可以把Person.java代碼粘貼到eclipse中去了, eclipse默認是自動編譯的 ,添加的java代碼會自動編譯成class位元組碼文件
5. 如何在eclipse中新建Java類
1.在工程src包下 右鍵 選擇「new」- package ,一般情況下,我們需要新建一個包來包括java類
2.輸入你要建立的包的名稱
3.創建包完畢
4.在包上右鍵「new」-"class"
5.這里填寫你新建類的名稱,選擇public 如果要主函數的話,選擇下邊的 public static void main(String[] args),點擊finish
6.新建完畢的類
6. 新建java終態類步驟
咨詢記錄 · 回答於2021-11-16
7. 如何在eclipse中新建Java類
1.在工程src包下 右鍵 選擇「new」- package ,一般情況下,我們需要新建一個包來包括java類
2.輸入你要建立的包的名稱,一般是以com靠頭,公司域名居中,然後用途結尾,例如 com.. 就是層的一個包
3.創建包完畢
4.在包上右鍵「new」-"class"
5.這里填寫你新建類的名稱,選擇public 如果要主函數的話,選擇下邊的 public static void main(String[] args),點擊finish
6.新建完畢的類
8. 如何在eclipse中新建Java類
第一步:啟動Eclipse,第一次啟動軟體時,會提示選擇工作空間(WorkSpace),可在硬碟上新建一個文件夾作為工作空間,這個文件夾將會保存你所編寫的所有的源代碼。第二步:新建一個簡單的Java工程。依次點file->new->project->javaproject。第三步:別是填寫工程名以及源碼文件夾,一般情況是默認src作為根文件夾。第四步:在工程中新建一個包。值得注意的是包名和工程名一般都是小寫開頭,而Java類名則是大寫開頭。右鍵單擊src,依次點擊new->package->填寫包名。第五步:在包中新建一個Java類,一個包中可以有多個Java類,Java類是我們寫代碼的區域。在上一步中新建的包上右鍵單擊,依次選擇new->class,填寫類名完成。
9. Java如何創建一個類
定義一個類,class A={},然後創建這個類對象,A a = new A();有沒有參數看你類定義的構造函數; 例代碼如下:
class TestInner{
public static void main(String [] args)
{
Outer outer = new Outer();
Outer.Inner inner = outer.new Inner();
}
}
在內部類(Inner Class),可以隨意的訪問外部類的成員,這可讓我們更好地組織管理我們的代碼,增強代碼的可讀性。
10. java中怎樣創建一個類有那些方法,請舉例說明.謝謝!
1、定義一個類,class A={},然後創建這個類對象,A a = new A();有沒有參數看你類定義的構造函數;
2、繼承java已有的類,以異常類為例,class A extends Exception{}
3、實現java已有介面或者抽象類,class A implements Runnable{}
4、單繼承多實現,class A extends B implements C,D{}