版本:Unity 6 (6000.0)
语言英语
  • C#

SystemInfo.processorType

提出更改建议

成功!

感谢您帮助我们改进 Unity 文档的质量。尽管我们无法接受所有提交,但我们会阅读我们用户提出的每条建议,并将在适用的情况下进行更新。

关闭

提交失败

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

关闭

取消

public static string processorType;

说明

处理器名称(只读)。

在不支持此属性的平台上,将返回 SystemInfo.unsupportedIdentifier

using UnityEngine;
using System;
using System.Globalization;

public class Example : MonoBehaviour { void Start() { // Prints using the following format - "Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz" print(SystemInfo.processorType);

// Print out the architecture of the running process. // We can use the Environment property Is64BitProcess along with SystemInfo.processorType to figure it out. // Do a case insensitive string check. if (CultureInfo.InvariantCulture.CompareInfo.IndexOf(SystemInfo.processorType, "ARM", CompareOptions.IgnoreCase) >= 0) { if (Environment.Is64BitProcess) Debug.Log("ARM64"); else Debug.Log("ARM"); } else { // Must be in the x86 family. if (Environment.Is64BitProcess) Debug.Log("x86_64"); else Debug.Log("x86"); } } }

其他资源:SystemInfo.processorCountSystemInfo.processorFrequency。在 2019.3 之前的 Android 版本上,此属性将返回进程架构,而不是 CPU 名称。要确定正在运行的进程的架构,请参阅示例代码。