熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java核心技術 >> 正文

隨機數 獲取背景音樂

2022-06-13   來源: Java核心技術 

  隨機數


  Random[typerange]    :   產生type類型並且在RANGE范圍內均勻的分布隨機數
Random[]              :   上的隨機數
SeedRandom[n]         :   以n為seed產生偽隨機數
Randomldistribution   :   可以產生各種分布


  獲取背景音樂源代碼


  import javaawt*;
import javaawtevent*;
import javaappletApplet;
import javaappletAudioClip;


  public class LX_Thread extends Applet implements ItemListenerActionListener
{
AudioClip sound;
Choice c=new Choice();
Button play=new Button(播放);
Button loop=new Button(連續);
Button stop=new Button(停止);



  public void init(){
cadd(twav); cadd(ywav); cadd(ydwav);
add(c);
caddItemListener(this);
add(play);add(loop);add(stop);


  playaddActionListener(this);
loopaddActionListener(this);
stopaddActionListener(this);


  sound=getAudioClip(getCodeBase()twav);
soundplay();


  }


  public void itemStateChanged(ItemEvent e){
soundplay();
//sound=getAudioClip(getCodeBase()cgetSelectedItem());//WAV/+


  }


  public void actionPerformed(ActionEvent e){
if(egetSource()==play) soundplay();
else if(egetSource()==loop) soundloop();
else if (egetSource()==stop) soundstop();
}




From:http://tw.wingwit.com/Article/program/Java/hx/201311/25736.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.