switch(type ) { case LUA_TNUMBER: //number型 printf("%f",lua_tonumber(L, i) ); break; case LUA_TBOOLEAN: //boolean型 if(lua_toboolean(L,i) ){ printf("true"); }else{ printf("false"); } break; case LUA_TSTRING: //string型...
{ switch(cmdopt) { case 'h': /* broker uri */ host = (char*)strdup(optarg); break; case 'p': /* port number */ port = atoi(optarg); break; case 'C': /* cafile cert file */ cafile = (char*)strdup(optarg); break; case 'c': /* client cert file */ certfile = (...
switch (x) { case 1: System.out.println("1"); // No break statement here. case 2: System.out.println("2"); } このコードのコンパイル時に -Xlint:fallthrough フラグが使用されていた場合、コンパイラは該当するケースの行番号とともに、fall-through ケースの可能性があることを示...
(" pop rax\n"); switch (node.kind) { case NodeKind.ND_ADD: Console.Write(" add rax, rdi\n"); break; case NodeKind.ND_SUB: Console.Write(" sub rax, rdi\n"); break; case NodeKind.ND_MUL: Console.Write(" imul rax, rdi\n"); break; case NodeKind.ND_DIV: Console.Write("...
switch (x) { case 1: System.out.println("1"); // No break statement here. case 2: System.out.println("2"); } このコードのコンパイル時に -Xlint:fallthrough フラグが使用されていた場合、コンパイラは該当するケースの行番号とともに、fall-through ケースの可能性があることを示...
配列のインデックス番号が必要なときはenumerate関数を使う while 条件が成立している間繰り返す C言語と同じbreak とcontinue も同じ do-while 最初に1回無条件に実行 なし switch-case 場合分け なし辞書を使って場合分けできる del なし 変数を削除できる ライブラリ取り込み #include import...