Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
if/else と switch ステートメントを使用するのは個人的な好みの問題ですか、それとも実際には動作が異なりますか? 一方は他方よりも効率的ですか?もしそうなら、正確にはなぜですか?
ケースが 4 つを超える場合は、switch-case ステートメントの方が効率的です。あなたのケースは直接ジャンプしました。一方、if-else ステートメントを使用すると、ケースが交差するまですべてのケースが比較されます。