1
2

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 2021-08-11

### はじめに
この記事ではMac における初心者が使いながら便利だと思ったEclipseの機能を書き足して行こうtと思っています。
自分の備忘録を兼ねた記事です。
まだ、書き途中なのでご容赦ください。

###Eclipseのコンテンツアシスト
変数名やメソッド名、クラス名などを補完してくれる。スペルミスを防ぐためにも使った方がいい。
preferance → java → コンテンツアシスト

###コンストラクターやゲッター、セッターの設定

コンストラクターやゲッター、セッターの設定は自動生成することができます。
右クリック  →  ソース  →  フィールドを利用してコンストラクターの生成
右クリック  →  ソース  →  getter および setter の生成

###equalsメソッドの自動生成
右クリック  →  ソース  →  hashcodeおよびequalsの生成

###toStringメソッドの自動生成
右クリック  →  ソース  →  toStringの生成

###テンプレートの一覧
設定のJava→エディター→テンプレート

Command i

ソースコードのフォーマットを整えて見やすくしてくれます。

Comman shift f

ソースコードのフォーマットを整えて見やすくしてくれます。

### デバグ機能
変数がどのように変わって行くかなどを視覚的に見て、バグを突き止める事ができます。
実行→デバッグ→

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?