版本:Unity 6 (6000.0)
语言中文(简体)
  • C#

SystemInfo.operatingSystem

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交内容,但我们会阅读用户提出的每条建议的更改并根据需要进行更新。

关闭

提交失败

由于某种原因,无法提交您建议的更改。请在几分钟后<a>重试</a>。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

public static string operatingSystem;

描述

带版本的操作系统名称(只读)。

返回有关设备操作系统详细信息,包括版本。如需进行简单的平台检测,像 Application.platformdeviceType 这样的属性可能更合适。

注意:在 Microsoft Store 应用中,很难识别您运行的是 Windows 的 32 位版本还是 64 位版本。但是,您可以查询 CPU 架构来查找此信息。如果 CPU 是 64 位,SystemInfo.operatingSystem 返回 Windows <version> 64 bit,如果 CPU 是 32 位,它返回 Windows <version>

using UnityEngine;

public class ExampleClass: MonoBehaviour { void Start() { // Prints "Windows 11 (10.0.22621) 64bit" on 64 bit Windows 11 // Prints "Mac OS X 13.4" on Mac OS Ventura // Prints "iPhone OS" with iOS 15.3.1 // Prints "iPad OS" on iPad with iOS 16 // Prints "Android OS 13 / API-33 (TQ2A.230305.008.C1/9619669)" Debug.Log(SystemInfo.operatingSystem); } }

其他资源:Application.platformdeviceType