HTML HTML5 HTMLタグ スマートフォン |
CSS CSSプロパティ CSS・HTML便利ツール |
HTML色見本 配色組み合わせツール 特殊文字 |
JAVA Android |
PHP Smarty修飾子 EXCEL |
// クラス名 Test class Test { int score; Test(int v) { score = v; } SetScore(int v) { score = v; } }
Test c = new Test(); c.setScore(80) ;
Math.exp(5) ;
class Test { int score; // 初期化を行う Test(int v) { score = v; } }
Test test1 = new Test(70);
class MathTest extends Test { MathTest() { // 親クラスのコンストラクタを呼び出す super("数学"); // 親クラスのメソッドを呼び出す super.SetScore(70); // 親クラスの属性を取得 System.out.println(super.score); } }
MyList list = new MyList(); if (MyList instanceof Button) { System.out.println("MyListはButtonに属してる"); } else { System.out.println("MyListはButtonに属していない"); }