程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 使用EMCV將工程.c文件改為.cpp文件所出現錯誤的解決辦法

使用EMCV將工程.c文件改為.cpp文件所出現錯誤的解決辦法

編輯:C++入門知識

編譯現象: "dm642_pci.cpp", line 183: error: argument of type "Ptr" is incompatible with parameter of type "GIO_Handle" "dm642_pci.cpp", line 205: error: argument of type "Ptr" is incompatible with parameter of type "GIO_Handle" "dm642_pci.cpp", line 212: error: argument of type "Ptr" is incompatible with parameter of type "GIO_Handle" "dm642_pci.cpp", line 213: error: argument of type "Ptr" is incompatible with parameter of type "GIO_Handle"   4 errors detected in the compilation of "dm642_pci.cpp".   >> Compilation failure   Compile Complete,   4 Errors, 0 Warnings, 0 Remarks.   分析原因:     上述錯誤都是提示類型不匹配,產生原因是C++編譯器對類型的檢測更加嚴格。在C語言中void*指針可以方便的和其他指針轉換,但在C++中需要手工強制轉換。   解決辦法:     在Ptr指針定義的變量g_pMyGio處加上強制類型轉換,即(GIO_Handle)g_pMyGio。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved