隐式类型转换

Posted rivsidn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐式类型转换相关的知识,希望对你有一定的参考价值。

隐式类型转换:

#include <stdio.h>

int main(int argc, char *argv[])
{
    int i;
    char a[4] = {0, 0x11, 0x22, 0xf3};


    for (i = 0; i < 4; i++) {
        printf("%02x ", a[i]);
    }
    printf("
");


    return 0;
}

执行结果:

$00 11 22 fffffff3

 

注意最后一个数打印结果,其中做了一个隐式类型转换。

 

以上是关于隐式类型转换的主要内容,如果未能解决你的问题,请参考以下文章

隐式转换类型

隐式类型转换

UIViewAnimation 导致从枚举类型隐式转换

js隐式类型转换,预编译递归

无法将类型 double 隐式转换为 int

scala中隐式转换之总结