LoginSignup
0
0

More than 3 years have passed since last update.

Java Wrapperクラス

Last updated at Posted at 2020-11-28

1,Wrapperクラスの紹介です。

Wrapperクラスは、プリミティブ型のデータを参照型と同じような扱いにできるクラスです。
これによって、参照型に含まれているメソッドが使えるようになります。

2,ソースコード

Main.java
public class Main {

    public static void main(String[] args) {


        // primitive    // Wrapper
        // ---------    // -------
        // boolean      // Boolean
        // char         // Character
        // int          // Integer
        // double       // Double

        Boolean a = true;
        Character b = '@';
        Integer c = 123;
        Double d = 3.14;
        String e = "hiro";

        if (a == true) {
            System.out.println("This is true");
        }

    }

}

Java チュートリアル:clipboard:

:coffee: Java テキストファイル(.txt .csv)への出力 java.io.FileWriter : :white_check_mark:here
:coffee: Java テキストファイル(.txt .csv)からの入力 java.io.FileReader : :white_check_mark:here
:coffee: Java モニターからの入力 java.util.Scanner : :white_check_mark:here
:coffee: Java GUIからの入力 javax.swing.JOptionPane : :white_check_mark:here
:coffee: Java Mathクラス Math.sqrt : :white_check_mark:here
:coffee: Java 乱数の生成 java.util.Random : :white_check_mark:here
:coffee: Java Stringクラス : :white_check_mark:here
:coffee: Java Wrapperクラス : :white_check_mark:here
:coffee: Java ArrayListクラス java.util.ArrayList : :white_check_mark:here
:coffee: Java メソッド(method)の作り方とオーバーロード : :white_check_mark:here
:coffee: Java printf()メソッド : :white_check_mark:here
:coffee: Java オブジェクト(Object Oriented Programming)とコンストラクタ、スコープ(local,global) : :white_check_mark:here

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0