我在Omnet ++模擬器中做了一個C++代碼,其中我遇到了這段代碼。有人可以解釋hpw是這個序列的工作嗎?C++澄清
char *st = "data.enc";
std::ofstream myfile;
myfile.open(st,std::ios_base::app); //Please provide explnation for this line
printf("\n AES encryption:\n");
for(i=0;i<4*4;i++)
{
printf("%02x ",out[i]+l);
myfile <<out[i]+l<<"\n";
}
printf("%02x ",out[i]);//What is out[i] ?
myfile.close();
printf("\n\n");
'std :: ofstream'是一個標準的,有據可查的類型。還是你問如何來一個成員函數調用? – StoryTeller
http://en.cppreference.com/w/cpp/io/ios_base/openmode – Steeve
你必須幫助我們''出''它沒有在給定的代碼中的任何地方定義。如果它不是一個無符號整數的數組(或指向數組的指針),那麼你將會遇到一段糟糕的時間。 – user4581301