📄 node.java
字号:
/**
* Insert the type's description here.
* Creation date: (Sep 2005)
* @author: Administrator
*/
class Node {
public int ID = 0;
public int X = 0;
public int Y = 0;
public double U = 0;
public double V = 0;
public Load load;
public Band band;
public static int r = 8;
/**
* Node constructor comment.
*/
public Node() {
band=new Band();
load=new Load();
//super();
}
/**
* Insert the method's description here.
* Creation date: (99-5-15 6:57:35)
* @param id int
* @param x int
* @param y int
*/
public Node(int id, int x, int y) {
ID=id;
X=x;
Y=y;
band=new Band();
load=new Load();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -