1
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 1 year has passed since last update.

Java 研修3日目エンジニアがソースを書くとき頻繁に間違えたところ

Posted at

自分は10/3に入社し、10/5からフルタイムでのJava研修を受けています。
そんな自分が練習の中で間違えたとこを記事にしています。

エスケープシーケンスの記入漏れ

System.out.println(""");              "
// ダブルクオーテーションを文字列で記入できない!!

//正答
System.out.println("\"");
//¥の場合あり!

=の右と左を間違える

public void setName(String name) {
			name=this.name;
		}
//代入される値と代入する値の順序が逆になってしまう

//正答
public void setName(String name) {
			this.name=name; //代入される=代入する
		}

コンストラクタに戻り値をつけてしまう

Cat.java
void Cat(){〜〜〜処理〜〜〜}

//正答
Cat(){〜〜〜処理〜〜〜}

メソッドに引数があった場合に引数を入れ忘れる

上記のようなかなり初歩的なミスを多くしてました。
他にもString型のデータを==で判定しそうになったり
getterとsetterの名前を逆逆にしてしまうなど!
あげたらキリがないですが、初心者が間違えそうな部分を記事にしました。

1
0
0

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
1
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?