予約語
日本語 | 予約済み単語 |
英語 | keyword |
ふりがな | よやくご |
フリガナ | ヨヤクゴ |
プログラミング言語がすでに「予約」している単語。
「キーワード」とも言う。
プログラミング言語上、特別な意味を持つ単語。
特別な意味を持つため、変数名やクラス名に使用することができない。
Javaでは以下の単語が該当する。
・abstract
・assert
・boolean
・break
・byte
・case
・catch
・char
・class
・const
・continue
・default
・do ( do-while )
・double
・else
・extends
・final
・finally
・float
・for
・goto
・if
・implements
・import
・instanceof
・int
・interface
・long
・native
・new
・package
・private
・protected
・public
・return
・short
・static
・strictfp
・super
・switch
・synchronized
・this
・throw
・throws
・transient
・try
・void
・volatile
・while
Javaでは大文字小文字は区別されるため、本辞書内での使用例のように「class」は予約語だが「Class」は普通の単語とみなされる。また、単語単位で判断されるため「classes」も普通の単語とみなされる。
「キーワード」とも言う。
プログラミング言語上、特別な意味を持つ単語。
特別な意味を持つため、変数名やクラス名に使用することができない。
Javaでは以下の単語が該当する。
・abstract
・assert
・boolean
・break
・byte
・case
・catch
・char
・class
・const
・continue
・default
・do ( do-while )
・double
・else
・extends
・final
・finally
・float
・for
・goto
・if
・implements
・import
・instanceof
・int
・interface
・long
・native
・new
・package
・private
・protected
・public
・return
・short
・static
・strictfp
・super
・switch
・synchronized
・this
・throw
・throws
・transient
・try
・void
・volatile
・while
Javaでは大文字小文字は区別されるため、本辞書内での使用例のように「class」は予約語だが「Class」は普通の単語とみなされる。また、単語単位で判断されるため「classes」も普通の単語とみなされる。
// Sample.java
public class Sample
{
public static void main( String[] args )
{
// 予約語はそのままの単語で
// 変数名やメソッド名には使用できません。
// int while = 100;
// コンパイルエラー:
// キーワード "while" に構文エラーがあります。正しくは "Identifier" です。
// でも、単語そのものがダメというだけで、
// 大文字小文字が異なっていたり、
// 文字が増えたり減ったりしていれば大丈夫。
int whilE = 100;
int whil = 100;
int whileeeeee = 100;
}
}
public class Sample
{
public static void main( String[] args )
{
// 予約語はそのままの単語で
// 変数名やメソッド名には使用できません。
// int while = 100;
// コンパイルエラー:
// キーワード "while" に構文エラーがあります。正しくは "Identifier" です。
// でも、単語そのものがダメというだけで、
// 大文字小文字が異なっていたり、
// 文字が増えたり減ったりしていれば大丈夫。
int whilE = 100;
int whil = 100;
int whileeeeee = 100;
}
}
// Sample.java public class Sample { public static void main( String[] args ) { // 予約語はそのままの単語で // 変数名やメソッド名には使用できません。 // int while = 100; // コンパイルエラー: // キーワード "while" に構文エラーがあります。正しくは "Identifier" です。 // でも、単語そのものがダメというだけで、 // 大文字小文字が異なっていたり、 // 文字が増えたり減ったりしていれば大丈夫。 int whilE = 100; int whil = 100; int whileeeeee = 100; } }
「みだし」に含まれているページ
「解説」に含まれているページ
- *
- <%@ page import
- abstract
- assert
- break
- C++言語
- case
- catch
- class
- classフィールド
- const
- continue
- C言語
- default
- do
- do-while
- doステートメント
- else
- extends
- final
- finally
- for
- forステートメント
- friend
- goto
- Identifier
- if
- implements
- import
- instanceof
- interface
- native
- new
- package
- private
- protected
- public
- return
- static
- static final
- strictfp
- struct
- super
- superメソッド
- switch
- switchステートメント
- synchronized
- this
- throw
- throws
- transient
- try
- unsigned
- volatile
- while
- whileステートメント
- アクセス修飾子
- インターフェイス
- インターフェイス修飾子
- インポート
- インポート宣言
- キャスト演算子
- キーワード
- クラス修飾子
- コンストラクタ修飾子
- シンタックス
- ステートメント
- スペース
- セマンティクス
- パッケージ宣言
- フィールド修飾子
- ブロック修飾子
- メソッド修飾子
- ループ
- 予約語
- 修飾子
- 分岐
- 名前空間
- 変数宣言
- 大文字
- 抽象クラス
- 抽象メソッド
- 構造体
- 空ステートメント
- 識別子
- 静的