using System.Collections;using System.Collections.Generic;using UnityEngine;public class Demo : MonoBehaviour{//常量-int基本数据类型const int intData = 0;//变量-float基本数据类型float floatData = ...
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Demo : MonoBehaviour
{
//常量-int基本数据类型
const int intData = 0;
//变量-float基本数据类型
float floatData = 0.5f;
//变量-bool基本数据类型
bool boolData = true;
//定义一个string数据
string[] strArray = { "1", "2" };
//定义一个长度为3的int数组
int[] intArray = new int[3];
//构造函数
public Demo(float floatData, bool boolData)
{
this.floatData = floatData;
this.boolData = boolData;
}
void Start()
{
//定义Demo实例,输出实例的字段信息
Demo demo = new Demo(0.8f, false);
Debug.Log("demo.floatData = " + demo.floatData);
Debug.Log("demo.boolData = " + demo.boolData);
}
}
沃梦达教程
本文标题为:游戏开发(Unity&iOS)总结01 - 常量&数组&构造函数
基础教程推荐
猜你喜欢
- MVVMLight项目Model View结构及全局视图模型注入器 2023-05-07
- iOS Crash常规跟踪方法及Bugly集成运用详细介绍 2023-01-18
- Android开发Compose集成高德地图实例 2023-06-15
- iOS开发 全机型适配解决方法 2023-01-14
- Android Compose自定义TextField实现自定义的输入框 2023-05-13
- Android实现短信验证码输入框 2023-04-29
- Flutter进阶之实现动画效果(三) 2022-10-28
- IOS获取系统相册中照片的示例代码 2023-01-03
- iOS中如何判断当前网络环境是2G/3G/4G/5G/WiFi 2023-06-18
- iOS开发使用XML解析网络数据 2022-11-12