?? node.java
字號:
package myPackage;
public class Node{ //節點類
public Node next;
char X_CHAR;
float X_NUM;
int X_Point;
int Judgment; //判斷標記系數正負
public Node(Node nextval){
next=nextval;
}
public Node(float X_NUM,char X_CHAR,int X_Point,int Judgment,Node next){
this.next=next;
this.X_CHAR=X_CHAR;
this.X_NUM=X_NUM;
this.X_Point=X_Point;
this.Judgment=Judgment;
}
public void setX_CHAR(char X_CHAR){
this.X_CHAR=X_CHAR;
}
public char getX_CHAR(){
return X_CHAR;
}
public void setX_NUM(float X_NUM){
this.X_NUM=X_NUM;
}
public float getX_NUM() {
return X_NUM;
}
public void setX_Point(int X_Point){
this.X_Point=X_Point;
}
public int getX_Point(){
return X_Point;
}
public void setNEXT(Node next){
this.next=next;
}
public Node getNEXT(){
return next;
}
public void setJudgment(int Judgment){
this.Judgment=Judgment;
}
public int getJudgment(){
return Judgment;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -