91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java實現隨機數生成器

發布時間:2020-09-17 23:35:13 來源:腳本之家 閱讀:165 作者:Elon'''' 欄目:編程語言

本文實例為大家分享了java實現隨機數生成器的具體代碼,供大家參考,具體內容如下

自己編的隨機數生成器,比較簡陋,功能也單一,當作練手。

Application.java

package src;
 
public class Application {
 public static void main(String[] args) {
 WindowBoxLayout win=new WindowBoxLayout();
 win.setBounds(100,200,300,350);
 win.setTitle("隨機數生成器");
 win.setVisible(true);
 }
}

RandomListener.java

package src;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Random;
 
import javax.swing.*;
 
public class RandomListener implements ActionListener{
 JTextField text1;
 JTextArea text2;
 Random random=new Random();
 int result=0;
 public void setJTextField(JTextField t){
 text1=t;
 }
 public void setJTextArea(JTextArea t){
 text2=t;
 }
 @Override
 public void actionPerformed(ActionEvent e) {
 try{
 text2.setText("");
 Integer number=Integer.parseInt(text1.getText());
 result=random.nextInt(number)+1;
 text2.append(result+"");
 }
 catch(Exception exp){
 text2.append("請輸入數字字符");
 
 }
 }
}

Windowboxlayout.java

package src;
 
import javax.swing.*;
public class WindowBoxLayout extends JFrame{
 /**
 * 
 */
 private static final long serialVersionUID = 1L;
 Box baseBox;
 JTextField text1;
 JTextArea text2;
 JButton button;
 RandomListener random;
 public WindowBoxLayout(){
 setLayout(new java.awt.FlowLayout());
 init();
 setVisible(true);
 setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 }
 void init(){
 baseBox=Box.createVerticalBox();
 baseBox.add(new JLabel("請輸入隨機數的最大范圍值:"));
 baseBox.add(Box.createVerticalStrut(8));
 text1=new JTextField(5);
 baseBox.add(text1);
 baseBox.add(Box.createVerticalStrut(8));
 button=new JButton("確定");
 baseBox.add(Box.createVerticalStrut(8));
 baseBox.add(button);
 text2=new JTextArea(6,12);
 baseBox.add(Box.createVerticalStrut(18));
 baseBox.add(text2);
 add(baseBox);
 random=new RandomListener();
 random.setJTextField(text1);
 random.setJTextArea(text2);
 button.addActionListener(random);
 }
 
}

類結構圖:

java實現隨機數生成器

效果圖:

java實現隨機數生成器java實現隨機數生成器java實現隨機數生成器

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

丰顺县| 江都市| 昔阳县| 右玉县| 习水县| 马鞍山市| 重庆市| 方城县| 松潘县| 合阳县| 富蕴县| 灵丘县| 湖州市| 鄂伦春自治旗| 浏阳市| 凤凰县| 巴塘县| 南岸区| 定边县| 天门市| 大渡口区| 阿勒泰市| 波密县| 建昌县| 岳阳市| 金沙县| 南投县| 鹰潭市| 石首市| 临桂县| 新营市| 东城区| 桦甸市| 太原市| 育儿| 延安市| 本溪| 晋宁县| 东兴市| 阿荣旗| 和田市|