java.lang
日本語 | ジャバ言語パッケージ |
英語 | java language |
ふりがな | じゃばらんぐ、じゃばてんらんぐ |
フリガナ | ジャバラング、ジャバテンラング |
J2SEにおいて最も基本的なパッケージ。
J2SEのパッケージのひとつ。
Integerクラス等のラッパークラスや、Exceptionクラス等の基本的な例外を抱えたパッケージ。
java.langパッケージは、他のパッケージと異なり「パッケージ名を指定しなくてもクラスが使用できる」という特別なパッケージである。
Integerクラス等がパッケージの指定を必要とせず使用できるのはそのためである。
J2SEのパッケージのひとつ。
Integerクラス等のラッパークラスや、Exceptionクラス等の基本的な例外を抱えたパッケージ。
java.langパッケージは、他のパッケージと異なり「パッケージ名を指定しなくてもクラスが使用できる」という特別なパッケージである。
Integerクラス等がパッケージの指定を必要とせず使用できるのはそのためである。
参考サイト
// Sample.java
public class Sample
{
public static void main( String[] args )
{
// Integerクラスはjava.langパッケージのクラスなので、
// パッケージの指定をせずに使用できます。
Integer integer = new Integer( 100 );
System.out.println( integer );
// 100
// ちゃんとパッケージを指定して使うこともできます。
java.lang.Integer integer2 = new java.lang.Integer( 200 );
System.out.println( integer2 );
// 200
}
}
public class Sample
{
public static void main( String[] args )
{
// Integerクラスはjava.langパッケージのクラスなので、
// パッケージの指定をせずに使用できます。
Integer integer = new Integer( 100 );
System.out.println( integer );
// 100
// ちゃんとパッケージを指定して使うこともできます。
java.lang.Integer integer2 = new java.lang.Integer( 200 );
System.out.println( integer2 );
// 200
}
}
// Sample.java public class Sample { public static void main( String[] args ) { // Integerクラスはjava.langパッケージのクラスなので、 // パッケージの指定をせずに使用できます。 Integer integer = new Integer( 100 ); System.out.println( integer ); // 100 // ちゃんとパッケージを指定して使うこともできます。 java.lang.Integer integer2 = new java.lang.Integer( 200 ); System.out.println( integer2 ); // 200 } }
「みだし」に含まれているページ
「解説」に含まれているページ
- <%@ page import
- [L
- ArithmeticException
- ArrayIndexOutOfBoundsException
- ArrayStoreException
- AssertionError
- Boolean
- Byte
- Character
- CharSequence
- ClassCastException
- ClassNotFoundException
- Cloneable
- Double
- Error
- Exception
- ExceptionInInitializerError
- Float
- IllegalArgumentException
- IndexOutOfBoundsException
- Integer
- InterruptedException
- InvocationTargetException
- Iterable<T>
- java.lang
- java.util
- Long
- Math
- NoClassDefFoundError
- NullPointerException
- NumberFormatException
- Object
- OutOfMemoryError
- Runnable
- Runtime
- RuntimeException
- Short
- StackOverflowError
- String
- StringBuffer
- StringIndexOutOfBoundsException
- System
- Thread
- Throwable
- パッケージ名
「サンプルプログラムとか」に含まれているページ
- %演算子
- *演算子
- +演算子
- -演算子
- /演算子
- <%= %>
- <%@ page errorPage
- <%@ page isErrorPage
- [L
- ArithmeticException
- ArrayIndexOutOfBoundsException
- ArrayList
- ArrayStoreException
- assert
- AssertionError
- catch
- Caused by
- Class
- ClassCastException
- ClassNotFoundException
- clone
- Cloneable
- CloneNotSupportedException
- Error
- Exception
- ExceptionInInitializerError
- finally
- HashMap
- IllegalArgumentException
- import
- IndexOutOfBoundsException
- InterruptedException
- InvocationTargetException
- java.lang
- JAVA_HOME
- JSP式
- JSP暗黙オブジェクト「exception」
- JUnit
- NoClassDefFoundError
- null
- NullPointerException
- NumberFormatException
- Object
- OutOfMemoryError
- println
- printStackTrace
- RSS
- Rss4j
- RuntimeException
- ServletException
- StackOverflowError
- StringIndexOutOfBoundsException
- substring
- TestCase
- throw
- Throwable
- throws
- try
- アンボクシング変換
- インデックスナンバー
- イントロスペクション
- エラー
- エラーハンドラ
- キャッチ
- コンパイルタイムエラー
- ジェネリックメソッド
- スタックトレース
- ソート
- ダウンキャスト
- テストファースト
- デバッガ
- デバッグ
- バグ
- バッファアンダーフロー
- バッファアンダーラン
- バッファオーバーフロー
- バッファオーバーラン
- パッケージ名
- ボクシング変換
- ランタイムエラー
- リフレクション
- 例外
- 例外処理
- 冗長
- 可変長配列
- 変数宣言
- 投げられる
- 投げる
- 拡張for
- 拾う
- 浅いコピー
- 演算
- 環境変数
- 配列