前言
此為 C++11 decltype 上遇到以下問題,個人的解決問題筆記
error: expected primary-expression before ‘decltype’
解決方法:
這是個邏輯問題,
我們可以直接思考一個問題:
cout << int;
這樣的程式碼正確嗎?
如果你想通了,那你應該就知道不能這樣做。
(資料型態是不能這樣印出來的!!!)
正確使用方式範例:
int x = 0;
decltype(x) y = 1; // y -> int
這裡y的類別就是 int ,是經由 decltype(x) 得到的。
你應該是想要這樣做:
雖然還不夠完美,但至少是能得到類別名稱的方法。
cout << typeid(x).name();
reference
https://stackoverflow.com/questions/56002554/error-expected-primary-expression-before-decltype
https://stackoverflow.com/questions/20804871/receiving-expected-primary-expression-when-calling-templated-function-from-wit
https://tw511.com/a/01/3084.html
http://blog.sina.com.cn/s/blog_49366773010179vx.html
http://www.cplusplus.com/forum/general/227824/
https://www.javaer101.com/en/article/12992744.html
https://www.javaer101.com/en/article/36362825.html
Why do I get the error expected primary-expression before ‘)’ token? from cpp_questions
⭐C++ 基礎用法 相關文章整理⭐: |
---|
1. | 【C++】C++ compile 程式碼 使用 c++ 11 與使用相關的 package |
2. | 【C++】C/C++ 顯示資料的類別 (type) sample code (內含範例程式碼) print C data type, cout C++ data type, get variable type in c++ |
3. | 【C++】C++ 複製 2D array的方法 copy 2d array memcpy sample code (內含範例程式碼) |
⭐Modern C++ ⭐: |
| |
⭐C++ 字串處理相關文章整理⭐: |
1. | 【C++】字串 char string stringstream 相關用法總整理 (內含範例程式碼) 與利用 sprinf, snprinf assign 值的方法 |
2. | 【C++】字串 char string stringstream 「轉換」用法總整理 (內含範例程式碼) |
3. | 【C】printf, fprintf, sprintf, snprintf 相關用法總整理 (內含範例程式碼) |
4. | 【C++】C++ String 用法 連接兩個 String c++ string concat |
⭐C++ 系統偵測相關文章整理⭐: |
1. | 【C++】C++ 利用 dirent.h 計算資料夾的檔案數量 count files sample code (內含範例程式碼) |
2. | 【C++】C++ inotify sample code 偵測指定路徑底下的文件變化 (內有範例程式碼) |
⭐C++ OpenCV 相關文章整理⭐: |
1. | 【OpenCV】c++ OpenCV – 在 ubuntu 上第一次執行 OpenCV 程式 sample code (內含範例程式碼) |
2. | 【OpenCV】c++ OpenCV - 在圖片上寫上文字 cv::putText sample code (內含範例程式碼) |
3. | 【OpenCV】c++ OpenCV - cv::Rect 矩形用法與相關功能函數 sample code (內含範例程式碼) |
4. | 【OpenCV】c++ OpenCV - OpenCV 中的純量 定義顏色 cv::Scalar(255,255,255) color sample code (內含範例程式碼) |
5. | 【OpenCV】用 C++ 計算 iou 的方法 與網路算法常見錯誤(內附範例程式碼) sample code |
⭐C++ Makefile 相關文章整理⭐: |
1. | 【C++ Makefile】- 1 / 嘗試撰寫自己的第一份 Makefile |
2. | 【C++ Makefile】- 2 / 新增自己的變數 |
3. | 【C++ Makefile】- 3 / Makefile 常用變數 -「$@」, 「$^」 |
4. | 【C++ Makefile】- 4 / Makefile 常用 fake target -「.PHONY」
|
5. | 【C++ Makefile】- 5 / Makefile 內建變數 -「$@」, 「$^」, 「$<」, 「$* 」,「$? 」
|
⭐【喜歡我的文章嗎? 歡迎幫我按讚~ 讓基金會請創作者喝一杯咖啡! 】
如果喜歡我的文章,請幫我在下方【 |
---|