在 Matlab 中,以下语句给出一个数字输出。.
>> 'abc' + 'def'
ans =
197 199 201
在 C++ 中,以下输出
std::string("abc") + std::string("def")
...会给可以说更有用的...
abcdef
多一点探索给..
>> a = 'abc'
a =
abc
>> whos
Name Size Bytes Class Attributes
a 1x3 6 char
这表明我的变量a
是一种char
类型。但是,我们知道这不等同于 C 类型的 char,因为它是一个知道其大小尺寸等的对象。
因此,我的问题是:这个数字输出有什么用?
...导致
他们为什么要把它设计成那样?