⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 association.java

📁 这是一个从音频信号里提取特征参量的程序
💻 JAVA
字号:
// file: Association.java//// import java libraries//import java.awt.*;import java.awt.event.*;public class Association {    // ---------------------------------------------------    //    // declare class member data    //    // ---------------------------------------------------        // process algorithm association string    //    private String association = null;    // ---------------------------------------------------    //    // declare class constructors    //    // ---------------------------------------------------    // method: Association    //    // arguments: none    // returns  : none    //    // default class constructor    //    public Association() {		// set the default association to none	//	association = new String();    }    // ---------------------------------------------------    //    // declare class methods    //    // ---------------------------------------------------    // method: getAssociation    //    // arguments: none    // return   : association of the algorithm vertex    //    // returns the association of the algorithm vertex    //    public String getAssociation() {	// return the algorithm vertex association	//	return association;    }    // method: setAssociation    //    // arguments:    //    String association: association of the algorithm vertex    //    // return   : none    //    // set the association of the algorithm vertex    //    public void setAssociation(String association) {	// set the algorithm vertex association	//	this.association = association;    }}//// end of file

⌨️ 快捷键说明

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