---
title: IsIntegralType
description: "判断输入的数据类型是否为整数类型，包括Int8、Int16、Int32、Int64、Uint8、Uint16、Uint32、Uint64。"
url: https://www.hiascend.com/document/detail/zh/canncommercial/latest/API/aolapi/atlasascendc_api_07_1157.html
sourcePath: /source/zh/canncommercial/900/API/aolapi/atlasascendc_api_07_1157.html
indexId: af39f6761d42cc78776d64a1d00795fc2c8de9a013666cbd36ec29a07d37e3a570
---
# IsIntegralType

#### 功能说明

判断输入的数据类型是否为整数类型，包括Int8、Int16、Int32、Int64、Uint8、Uint16、Uint32、Uint64。


#### 函数原型

```
bool IsIntegralType(const ge::DataType type)
```


#### 参数说明

| 参数 | 输入/输出 | 说明 |
| --- | --- | --- |
| type | 输入 | 输入的数据类型。 |


#### 返回值说明

若为整数类型返回true，否则返回false。


#### 约束说明

无


#### 调用示例

```
// 判断dtype不为整数类型时，返回
void Func(const ge::DataType type) {
    if (!IsIntegralType(type)) {
        return;
    }
}
```
