本文介绍了这样做是对的吗的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我对下面的代码感到困惑:
I am quite puzzled by the code below:
char *pchar=new char[2];
pchar[0]=4;
...
int t=pchar[0];
for(int i=0;i<t;t;i++)>
do sth.
...
pchar[0]
是一个字符,可以将它与没有任何先前值的整数进行比较
行动?
pchar[0]
is a char, can it be compared with an integer without any previous
action? Is it safe to do so?
推荐答案
int t=(int)(unsigned char)pchar[0];
这篇关于这样做是对的吗的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!