Unity的C#编程教程_32_for循环语句

  • 我们需要设计个程序,重复显示一个单词 100 次
  • 我们不用把一条语句写 100 遍,可以用循环代替
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ForOverview : MonoBehaviour
{

    public string theWord = "apple";

    // Start is called before the first frame update
    void Start()
    {
        for(int i = 0; i < 100; i++)
        {
            Debug.Log(theWord);
        }
        // 这里的 i 是个计数器
        // i 从 0 开始
        // 首先判断 i<100 这个条件是否满足
        // 如果满足则运行下面 {} 中的语句
        // 运行完成后,执行计数增加 i++,即 i=i+1
        // 然后再判断 i<100 是否满足,如果满足则再运行一次 {} 中的语句
        // 循环直到 i<100 不满足为止,所以一共运行了 100 次


        Debug.Log("Loop finished!");
    }

    // Update is called once per frame
    void Update()
    {
        
    }
}

Tags: