标签:强制 转换 code class 类型 基本数据 char 字节 port
//自动类型转换 short类型(2个字节)转成int类型(4个字节),均是整数类型 short s=1; int i; i=s;
//double类型(8字节)的数据强制转换成float类型(4字节) double d=1.333; float f; f=(float)d;
Byte(byte)
标签:强制 转换 code class 类型 基本数据 char 字节 port
原文地址:https://www.cnblogs.com/Cocoomg/p/9903237.html