📄 cclipplayerthread.java
字号:
package chiidanceapp;public class CClipPlayerThread implements Runnable{ private int ClipIndex; CClipPlayer ClipPlayer; Thread aThread = new Thread(); public CClipPlayerThread( int ClipIndex ) { ClipPlayer = new CClipPlayer(); this.ClipIndex = ClipIndex; ClipPlayer.openMusicStream( ClipIndex ); aThread = new Thread( this ); } public void openClipThread() { aThread.start(); } public void setClipIndex( int ClipIndex ) { this.ClipIndex = ClipIndex; } public void closeClip() { ClipPlayer.stop(); } public void play() { ClipPlayer.play(); } public void run() { ClipPlayer.play(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -