私は
ユーザに一連のステートメントを表示する必要があるプログラムを作成していました。その後、メイン画面に戻るかどうか尋ねます。そのコントロールので、メインのある部分からJavaのメインの別の部分にコントロールを転送するには?
import java.io.*;
public class main
{
public static void main() throws IOException
{
InputStreamReader isr=new InputStreamReader(System.in);
BufferedReader br=new BufferedReader(isr);
System.out.println("START");
int ch=Integer.parseInt(br.readLine());
switch(ch)
{
case 1:System.out.println("HI");
break;
/*I want a way to transfer the control from the case
such that it is transferred to
the print statement START.*/
}
}
}
do-whileループ内のmainメソッドのコード全体をラップします。 –
@Thilo、まれにしか死んでいない、ちょっと珍しい。例えば、以下を参照してください。[control flow constructs](https://blog.jooq.org/tag/control-flow/) –