タスク 1:
割り当て - 0: 静的、非静的
パブリッククラスシアター1
{
文字列映画名;
int movieTime;
public static void main (String args[])
{
Theater1 movie1 = new Theater1();
Theater1 movie2 = new Theater1();
movie1.movieName = "看守";
movie1.movieTime = 630;
movie2.movieName = "レオ";
movie2.movieTime = 720;
movie1.watch_movie();
movie2.watch_movie();
}
public void watch_movie()
{
System.out.println("watched: " movieName " showtime: " movieTime);
}
}
視聴時間: 看守ショータイム: 630
視聴時間: レオ ショータイム: 720
return ステートメント
パブリック クラス EbReading
{
public static void main (String args[]){
EbReading アセッサ = new EbReading();
int 消費単位 =assessor.reading();
System.out.println("CU" 消費単位);
assessor.calculate(消費単位);
}
public int reading()
{
int ユニット 1 = 100;
ユニット 1 を返します;
}
public void Calculate(int 消費単位)
{
int支払い = 消費単位*10;
System.out.println("Pay: " 支払い);
}
}
CU: 100
支払い: 1000
計算機にメソッドを追加します
パブリッククラス計算機
{
public static void main(string [] args)
{
Calculator calcul = new calculator();
calc.add();
}
public void add()
{
System.out.println(10 20);
}
}
// subtract()
//倍数()
// divide()
public class calculator1
{
int a = 10;
float b = 20.5f;
public static void main(string args [])
{
calculator1 calcult = new calculator1();
calc.add();
calc.sub();
calc.mult();
calc.div();
}
public void add()
{
float c = a b;
system.out.println( "addition:" c);
}
public void sub()
{
float c = a-b;
system.out.println( "suptraction:" c);
}
public void mult()
{
float c = a*b;
system.out.println( "Multiply:" c);
}
public void div()
{
float c = a/b;
system.out.println( "分裂:" c);
}
}
追加:30.5
減算:-10.5
乗算:205.0
分裂:0.4878049
以上がタスクの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。