在2008年视觉演播室撰写的简单的C++申请中处理指挥线论点时,我有问题。 我写了以下法典:
#include <iostream>
using namespace std;
int _tmain(int argc, char **argv)
{
char* c = *argv;
for(int i=0; i< argc ; ++i)
{
cout << argv[i] << endl;
}
int a;
cin >> a;
return 0;
}
我的问题是,每个指挥线论点的头一种特性只写到<编码>cout。
I identified the cause to be that the characters in the command line arguments are represented as 2 bytes, making every other 1 byte char
contain only zeros, i.e .
我的问题是,为什么发生这种情况? 从在净值的样本中发现的样本中发现的样本中可以做的是书面的。 此外,是否有办法强迫提出1个特有代表的论点的性质?
我希望我的问题足够清楚。