2
1

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.

Eclipseでコンストラクタを自動生成する方法

Last updated at Posted at 2020-05-11

はじめに

久方ぶりにJavaとEclipseを触りました。昔Eclipseを使っていた時なんか使いづらいと感じ食わず嫌いのような感じになっていましたが、ショートカットや機能を憶えるとなかなか使いやすいんじゃないかと思いました。とりあえず今回はコンストラクタの自動生成のやり方について書きます。

フィールドからコンストラクタを自動生成

例えばこんなクラスがあるとします。

public class Dog {
	String name;

	void bark() {
		System.out.println(name + ":「Bowwow.」");
	}
}

ここでコンストラクタをいちいち手入力するのはめんどくさいのでメニューバーのSource →Generate Constructor using Fields...を選択して、設定したいフィールドを選びgenerateをクリックすると、コンストラクタを自動生成してくれます。
con1.png
con2.png


public class Dog {
	String name;

	void bark() {
		System.out.println(name + ":「Bowwow.」");
	}

	public Dog(String name) {
		super();
		this.name = name;
	}
}

これで時短になります。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?