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

java memo

Last updated at Posted at 2025-03-14
---java memo


1
java 変数下の青い線を削除

デバッグではない状態、変数の上にマウスオンにする、
出た窓の三番目の Deactivate xxxxxxをクリック

2
java  行に大文字TODO 書くと、右に青い小さいな□でる

3
java 変数使わないとき、下に黄色線がでます。

4
@Injcet
Test test;
new不要ですので、非常に便利です。
@Injcet
注目してほしいのは@Injcetを使用すると 「new」を用いることがないということです。

5
文字列の一目文字のcharとして取得方法
String str = "T試験";
char str1 = str.charAt(0);

6
全角チェック
if (str.charAt(0) == "\u3000")
全角、半角チェック
Character.isSpaceChar(str1)
0
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
0
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?