Java獲取一維數組的最小值


    編寫程序,實現接受用戶在文本框中輸入的單行數據。這些數據都是整數數字,以空格進行分隔,空格數量不限。並將這些數據分割成一維數組,再從數組中提取最小值顯示在界面中。思路是先對用戶的輸入進行驗證,即先用trim()函數過濾用戶輸入字符串的左右空格,若結果為空字符串則用JOptionPane類的showMessageDialog方法提示用戶"請輸入數字內容"。若用戶輸入非空則使用charAt函數對用戶輸入字符串中的每一個字符進行判斷,若其既非數字也非空格則提示"輸入包含非數字內容",然后使用setText()函數將用戶輸入框中的數據清空。若通過驗證則創建一個字符串型一維數組,其元素是用戶輸入字符串以空格分隔后得到的內容。然后創建一個整型一維數組,並為其開辟等同於字符串型數組長度的空間。然后通過Integer類的valueOf()函數轉換輸入為整型數組。創建最小數變量,並初始化為整型數組的第一個元素。使用for循環遍歷該整型數組以提取最小整數,最后使用setText()函數顯示最小值到指定的標簽中

    代碼如下:

import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JOptionPane;

public class ArrayMinValue {

	private JFrame frame;
	private JTextField textField;
	JLabel lblNewLabel_1 = new JLabel();
	/**
	 * Launch the application.
	 */
	public static void main(String[] args) {
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				try {
					ArrayMinValue window = new ArrayMinValue();
					window.frame.setVisible(true);
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
		});
	}

	/**
	 * Create the application.
	 */
	public ArrayMinValue() {
		initialize();
	}

	/**
	 * Initialize the contents of the frame.
	 */
	private void initialize() {
		frame = new JFrame("獲取一維數組最小值");
		frame.setBounds(100, 100, 450, 150);
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		frame.getContentPane().setLayout(null);
		
		JLabel lblNewLabel = new JLabel("請在文本框中輸入多個整數,以空格為分隔符。例如:3 5 2 562 125");
		lblNewLabel.setBounds(10, 10, 414, 15);
		frame.getContentPane().add(lblNewLabel);
		
		textField = new JTextField();
		textField.setBounds(10, 35, 414, 21);
		frame.getContentPane().add(textField);
		textField.setColumns(10);		
		lblNewLabel_1.setBounds(115, 70, 309, 15);
		frame.getContentPane().add(lblNewLabel_1);
		JButton button = new JButton("\u8BA1\u7B97");
		button.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				do_button_actionPerformed(e);
			}
		});
		button.setBounds(10, 66, 93, 23);
		frame.getContentPane().add(button);		
	}
	protected void do_button_actionPerformed(ActionEvent e) {
        String arrayStr = textField.getText().trim();			//去除左右空格
        if(arrayStr.equals("")){
        	JOptionPane.showMessageDialog(null, "請輸入數字內容");
        	return;
        }
        for (int i = 0; i < arrayStr.length(); i++) {				// 過濾非法輸入
            char charAt = arrayStr.charAt(i);
            if (!Character.isDigit(charAt) && charAt != ' ') {
                JOptionPane.showMessageDialog(null, "輸入包含非數字內容");
                textField.setText("");
                return;
            }
        }
        String[] numStrs = arrayStr.split(" {1,}");			// 分割字符串
        int[] numArray = new int[numStrs.length];			// 創建整型數組
        // 轉換輸入為整型數組
        for (int i = 0; i < numArray.length; i++) {
            numArray[i] = Integer.valueOf(numStrs[i]);
        }
        int min = numArray[0];							// 創建最小數變量
        for (int j = 0; j < numArray.length; j++) {
            if (min > numArray[j]) {					// 提取最小整數
                min = numArray[j];
            }
        }
        lblNewLabel_1.setText("數組中最小的數是:" + min);		//顯示最小值到指定的標簽中
    }
}

效果如圖所示:


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM