203. 变量的常用类型
在上一篇,我们对变量进行了概述和简介,知识地图如下:
我们已经接触了变量的字符串类型,以及一些功能。
在这一篇,我们尝试多接触一些变量的类型。
首先是整数类型。
整数类型
整数类型一般是 int 类型,我们来看下如何使用,代码如下:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FirstGameObject : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
var textToPrint = 5;
print(textToPrint);
print(textToPrint);
print(textToPrint);
print(textToPrint);
print(textToPrint);
textToPrint = 0;
print(textToPrint);
print(textToPrint);
print(textToPrint);
print(textToPrint);
print(textToPrint);
}
// Update is called once per frame
void Update()
{
}
}
运行之后,结果如下:
我们当然也可以指定整个变量为 int 类型,代码如下:
int textToPrint = 5;
整数类型(一般叫整型),在游戏开发中使用的频率非常高,比如角色的等级、经验值、金币都是使用整型进行记录和存储。
实数类型
实数类型就是带有小数点的类型,比如 0.1,0.0,5.5 都是实数类型。
在 C# 有两种类型,一种是比较常用的 float,另一种是精度比较高的 double。
我们写一些代码测试一下,如下:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FirstGameObject : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
var textToPrint = 0.1f; // float 类型
print(textToPrint);
textToPrint = 0; // 可以接收 int 类型
print(textToPrint);
var textToPrint2 = 0.1; // double 类型
print(textToPrint2);
textToPrint2 = 1; // 同样可以接收 int 类型
print(textToPrint2);
}
// Update is called once per frame
void Update()
{
}
}
运行之后,结果如下:
float 类型在游戏开发中使用的频率也非常高,比如角色的血量条、一些数值、比如暴击率,都是 float 类型的。
float/double 同样可以指定类型,代码如下:
float textToPrint = 0.1f;
double textToPrint2 = 0.1;
逻辑真假类型
逻辑真假类型叫做布尔类型(bool 类型或 boolean 类型)。
布尔类型只有两个值,true 或 false,即真和假。
我们先写代码测试下:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FirstGameObject : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
bool textToPrint = true;
print(textToPrint);
textToPrint = false;
print(textToPrint);
}
// Update is called once per frame
void Update()
{
}
}
运行之后结果如下:
虽然 bool 变量只能存储 true 和 false,但是 bool 变量的使用频率不输 int 和 float。
这是因为 bool 变量常常与程序语言中的条件判断结合使用。
自定义类型
我们还剩下自定义类型,自定义类型其实有点复杂。
自定义类型有枚举、类、结构体、委托等,每一个都可以花一整个篇幅介绍,所以这部分后续再介绍。
好了到此变量的三种使用频率非常高的类型就介绍完了。
这一篇的内容就这些,我们下一篇再见,拜拜。
知识地图
更多内容
更新期间半价,保持 60% 的内容免费更新到此平台
版权所有 GamePix 独立游戏学院
转载请注明凉鞋的笔记