3
5

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 5 years have passed since last update.

Javaの勉強 - 1

Posted at

参考にするテキストに「i-モード」「J-フォン」とかあって
スマホ主流の2017年に大丈夫か?と、いきなり不安が。。。

そのあたりは気にしないことにする。

#準備
【エディタ】
CPad for Java2 SDK
※そのうちEclipseに変える。

#基本形
しばらくは↓を丸覚えでいいみたい。
進めながら徐々に内容を理解していく感じで。

Yomogi.java
public class Yomogi{
    public static void main(String[] args){
        /* ココに何か書く */
    }
}

・ファイルの拡張子は「.java」。
・ファイル名とクラス名を一致させる。
 ※今回だとYomogi
・大文字、小文字は区別される。
・行の終わりには「;」をつける。

くらいを気を付けていればとりあえずOK?

#文字列の表示
鉄板ネタの「Hello, world.」ってやつ。

Yomogi.java
public class Yomogi{
    public static void main(String[] args){
        System.out.println("Hello, world.");
    }
}

文字列の表示は
・System.out.println("文字列")
他にprintもあるみたいだけど、また今度。

これを実行すると。

pic002.JPG

表示されたのでOK。

今回はQiitaの練習も兼ねてるのでこれくらいで終了。

3
5
8

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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?