關於C與C++的區別
筆者介紹:姜雪偉,IT公司技術合夥人,IT高階講師,CSDN社群專家,特邀編輯,暢銷書作者,已出版書籍:《手把手教你架構3D遊戲引擎》電子工業出版社和《Unity3D實戰核心技術詳解》電子工業出版社等。
CSDN視訊網址:http://edu.csdn.net/lecturer/144
專案開發中,經常會遇到C與C++之間互相呼叫問題,但是有時會遇到在C語言沒啥問題,但是將其放到C++中就會出現問題,本篇部落格在此給讀者總結一下,在遇到下面這些情況時就要注意了。
一、在C++使用函式時,事先要先宣告否則就會報錯,但是在C語言就不存在這種問題,如下所示:
#include <stdio.h>
int main(void)
{
printf("%d\n", fun());
return 0;
}
int fun()
{
return 10;
}
二、在C++中,使一個常量指標指向一個常量變數,編譯時會發生報錯,但它是在C中沒有任何問題。
#include <stdio.h>
int main(void)
{
int i = 10;
int j = 20;
const int *ptr = &i; /* ptr is pointer to constant */
printf("ptr: %d\n", *ptr);
*ptr = 100; /* error: object pointed cannot be modified
using the pointer ptr */
ptr = &j; /* valid */
printf("ptr: %d\n", *ptr);
return 0;
}
error: assignment of read-only location ‘*ptr’
再看另一個例子:
#include <stdio.h>
int main(void)
{
int const i = 10; /* i is stored in read only area*/
int j = 20;
int const *ptr = &i; /* pointer to integer constant. Here i
is of type "const int", and &i is of
type "const int *". And p is of type
"const int", types are matching no issue */
printf("ptr: %d\n", *ptr);
*ptr = 100; /* error */
ptr = &j; /* valid. We call it as up qualification. In
C/C++, the type of "int *" is allowed to up
qualify to the type "const int *". The type of
&j is "int *" and is implicitly up qualified by
the compiler to "cons tint *" */
printf("ptr: %d\n", *ptr);
return 0;
}
error: assignment of read-only location ‘*ptr’
為了加深讀者印象再來一個:
#include <stdio.h>
int main(void)
{
int i = 10;
int j = 20;
int *const ptr = &i; /* constant pointer to integer */
printf("ptr: %d\n", *ptr);
*ptr = 100; /* valid */
printf("ptr: %d\n", *ptr);
ptr = &j; /* error */
return 0;
}
error: assignment of read-only variable ‘ptr’
最後一個例子:
#include <stdio.h>
int main(void)
{
int i = 10;
int j = 20;
const int *const ptr = &i; /* constant pointer to constant integer */
printf("ptr: %d\n", *ptr);
ptr = &j; /* error */
*ptr = 100; /* error */
return 0;
}
error: assignment of read-only variable ‘ptr’ error: assignment of read-only location ‘*ptr’
以上讀者在編寫程式碼時就要注意了。
三、在C中,一個void指標可以直接分配給其他一些指標,如int *,char *。 但是在C ++中,一個void指標必須被明確地指定型別。
int main()
{
void *vptr;
int *iptr = vptr; //In C++, it must be replaced with int *iptr=(int *)vptr;
return 0;
}
四、以下程式在C編譯和執行良好,但在C ++編譯失敗。 C ++中的const變數必須被初始化,但是在c中是沒有必要的。
int main()
{
const int a; // LINE 4
return 0;
}
五、我們可以使用一個C ++特定的關鍵字作為變數名。 該程式將不會在C ++中編譯,但會在C中編譯。
int main(void)
{
int new = 5; // new is a keyword in C++, but not in C
printf("%d", new);
}
同樣,我們可以使用其他關鍵字,如delete, explicit, class, .. 等。
六、C ++比C更嚴格的型別檢查,例如,以下程式在C中編譯,但不在C ++中編譯。 在C ++中,我們得到編譯器錯誤“從'int'到'char *'”的無效轉換。
#include <stdio.h>
int main()
{
char *c = 333;
printf("c = %u", c);
return 0;
}
以上是在程式設計時經常遇到的,在此給讀者列出來,供參考。。。。。。。。。
相關文章
- 關於C++中字串輸入get與getline的區別C++字串
- 關於java的引用和c++的區別JavaC++
- c與c++的區別C++
- const關鍵字在C與C++中修飾變數的區別C++變數
- C和C++區別C++
- fill函式與memset函式的區別(c++)函式C++
- nginx關於root與alias的區別Nginx
- Android關於buildToolVersion與CompileSdkVersion的區別AndroidUICompile
- C#與C++型別對應關係總結C#C++型別
- C++中的return和exit區別C++
- c++中指標和引用的區別?C++指標
- c++物件建立帶括號與無括號的區別C++物件
- C++與Rust資料型別對應關係C++Rust資料型別
- 關於c、c++之前比較模糊的概念C++
- c++ 和 c 三目運算子區別C++
- 關於C++的標頭檔案C++
- 關於C++複製控制C++
- Python 關於TCP簡介以及與UDP的區別PythonTCPUDP
- .net與C#的區別C#
- C/C++引用和指標的聯絡和區別C++指標
- C和C++的動態記憶體管理的區別C++記憶體
- 關於C++中物件與類的詳解及其作用詳解C++物件
- C++中break和continue的用法和區別C++
- C++基礎(八)struct和class的區別C++Struct
- 關於C++當中的“模板函式”C++函式
- C++中L和_T()之區別C++
- [20180917]關於分析函式的range與rows的區別.txt函式
- 關於C和C++混編的一些心得C++
- Java與C語言的區別?JavaC語言
- Excutors 與 ThreadPoolExcutor 的關係與區別thread
- Docker與containerd的關係與區別DockerAI
- 12C關於CDB、PDB引數的區別和總結
- c++類與類的聚合(Aggregation)關係C++
- Android NDK開發中java資料型別與C/C++資料型別的對應關係AndroidJava資料型別C++
- C語言與C++有聯絡,有區別,這些內容要了解!C語言
- 關於C++ scanf的一個小知識C++
- 關於call, apply, bind方法的區別與內部實現APP
- c/c++ 標準庫 set 自定義關鍵字型別與比較函式C++型別函式