error expected beforePRIu64
error: expected ‘)’ before ‘PRId64’
原來這個宏定義給c用的,C++要用它,就要定義一個__STDC_FORMAT_MACROS宏顯示打開它。
c++使用PRID64,需要兩步:
包含頭文件:<inttypes.h>
定義宏:__STDC_FORMAT_MACROS,可以通過編譯時加-D__STDC_FORMAT_MACROS,或者在包含文件之前定義這個宏。
怎么輸出uint64_t?出現(xiàn)錯誤“spurious trailing ‘%’ in format”。
瀏覽 70關注 0回答 2得****數(shù) 0
原文
我編寫了一個非常簡單的printf uint 64測試代碼:
#include <inttypes.h>#include <stdio.h>int main(){ uint64_t ui64 = 90; printf("test uint64_t : %" PRIu64 "\n", ui64); return 0;}復制
我使用ubuntu11.10(64位)和gcc版本4.6.1編譯它,但失敗了:
main.cpp: In function ‘int main()’:main.cpp:9:30: error: expected ‘)’ before ‘PRIu64’ main.cpp:9:47: warning: spurious trailing ‘%’ in format [-Wformat]
————————————————
ISO C99標準規(guī)定,只有在顯式請求時才必須定義這些宏。
#define __STDC_FORMAT_MACROS #include <inttypes.h>... now PRIu64 will work
原文鏈接:https://blog.csdn.net/beitiandijun/article/details/19156849
*博客內(nèi)容為網(wǎng)友個人發(fā)布,僅代表博主個人觀點,如有侵權請聯(lián)系工作人員刪除。