자바 1 차원 배열 의 최소 값 실현 방법 가 져 오기

사용자 가 텍스트 상자 에 입력 한 단일 줄 데 이 터 를 받 아들 이 는 프로그램 을 작성 합 니 다.이 데 이 터 는 모두 정수 숫자 로 빈 칸 으로 구분 되 며 빈 칸 의 수량 은 제한 되 지 않 습 니 다.이 데 이 터 를 1 차원 배열 로 나 눈 다음 배열 에서 최소 값 을 추출 하여 인터페이스 에 표시 합 니 다.아 이 디 어 는 먼저 사용자 의 입력 을 검증 하 는 것 입 니 다.즉,trim()함수 로 사용자 가 입력 한 문자열 의 좌우 빈 칸 을 걸 러 내 고 결과 가 빈 문자열 이면 JOptionPane 류 의 showMessageDialog 방법 으로 사용자 에 게'디지털 내용 을 입력 하 십시오'라 고 알려 줍 니 다.사용자 가 비어 있 지 않 으 면 charAt 함 수 를 사용 하여 사용자 가 입력 한 문자열 의 모든 문 자 를 판단 합 니 다.숫자 도 비어 있 지 않 으 면'비 숫자 내용 포함 입력'을 알려 주 고 setText()함 수 를 사용 하여 사용자 입력 상자 의 데 이 터 를 비 웁 니 다.인증 을 통 해 문자열 형 1 차원 배열 을 만 들 면 사용자 가 문자열 을 입력 하여 빈 칸 으로 구분 한 내용 입 니 다.그 다음 에 전체 1 차원 배열 을 만 들 고 문자열 형 배열 의 길이 와 같은 공간 을 열 어 줍 니 다.그리고 Integer 류 의 value Of()함 수 를 통 해 정형 수조 로 변환 합 니 다.최소 변 수 를 만 들 고 정형 배열 의 첫 번 째 요소 로 초기 화 합 니 다.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);       //
    }
}
효 과 는 그림 과 같다.

좋은 웹페이지 즐겨찾기