csharp Switch语句就像流线条件一样。当您想要将单个变量与一系列const进行比较时,它们非常有用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp Switch语句就像流线条件一样。当您想要将单个变量与一系列const进行比较时,它们非常有用相关的知识,希望对你有一定的参考价值。

public class ConversationScript : MonoBehaviour 
{
    public int intelligence = 5;
    
    
    void Greet()
    {
        switch (intelligence)
        {
        case 5:
            print ("Why hello there good sir! Let me teach you about Trigonometry!");
            break;
        case 4:
            print ("Hello and good day!");
            break;
        case 3:
            print ("Whadya want?");
            break;
        case 2:
            print ("Grog SMASH!");
            break;
        case 1:
            print ("Ulg, glib, Pblblblblb");
            break;
        default:
            print ("Incorrect intelligence level.");
            break;
        }
    }
}

以上是关于csharp Switch语句就像流线条件一样。当您想要将单个变量与一系列const进行比较时,它们非常有用的主要内容,如果未能解决你的问题,请参考以下文章

VB.NET 将 Select Case 语句堆叠在一起,就像在 Switch C#/Java 中一样

JavaScript学习——JavaScript 条件 语句 switch语句 while语句

js中的if判断语句和switch条件分支语句

Java条件语句之 switch

javascript基础加固3—-语法2

3.8 控制流程