0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Java#1:覚えた技術を日々書き留める

Posted at

久しぶりのJavaでした恥ずかしい失敗

数年ぶりに、業務でJavaをやっているので
家でも勉強しています。
つまらないミスをして詰まってしまったので、内容と原因をメモします。

HashMapがImportできない。。

やろうとしたのはこれだけ。

public class HashMap {
	public static void main(String[] args) {
		//Mapの宣言
		HashMap<String,String> hashmap = new HashMap<>();
	}
}

クラス名をHashMapにしてはいけなかったようで、クラス名を変更すると直りました。
予約語とかいうものですね。

0
0
2

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?