nodeinfo.java

来自「这是一个从音频信号里提取特征参量的程序」· Java 代码 · 共 65 行

JAVA
65
字号
// file: NodeInfo.java//// import java libraries//import java.awt.*;import java.awt.event.*;import javax.swing.*;import javax.swing.border.*;import javax.swing.event.*;import java.util.*;import java.io.*;import java.lang.*;public class NodeInfo {    // ---------------------------------------------------    //    // declare class member NodeInfo    //    // ---------------------------------------------------    // vertex of information     //    public Vector childIndex;    public int xloc;    public int yloc;    public int yoffset;    public int xoffset;    public boolean selfLoop;    public int neibIndex;    // ---------------------------------------------------    //    // declare class constructors    //    // ---------------------------------------------------    // method: NodeInfo    //    // arguments: none    //      // returns  : none    //    // default class constructor    //    public NodeInfo() {	// initialize  	//	childIndex = null;	xloc = 0;	yloc = 0;	yoffset = 0;	xoffset = 0;	selfLoop = false;	neibIndex = -1;    }}// // end of file

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?