關於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;
}
以上是在程式設計時經常遇到的,在此給讀者列出來,供參考。。。。。。。。。
相關文章
- 關於java的引用和c++的區別JavaC++
- c與c++的區別C++
- JAVA 與 C++ 的區別JavaC++
- 關於C++中字串輸入get與getline的區別C++字串
- C與C++中struct使用的區別C++Struct
- C/C++——C++中new與malloc的10點區別C++
- C++指標與引用的區別C++指標
- 《C++ Primer》 ---- 關於變數 與 基本型別C++變數型別
- 關於C++列舉型別C++型別
- 關於 in與exist , not in與not exist 的區別
- const關鍵字在C與C++中修飾變數的區別C++變數
- C和C++區別C++
- C++中結構體與類的區別C++結構體
- C++中new與malloc的10點區別C++
- nginx關於root與alias的區別Nginx
- 關於JSF與Struts的區別JS
- 引用的例子 C C++ 中區別C++
- C/C++——sizeof和strlen的區別C++
- 關於C/C++/Java的比喻C++Java
- 關於HashSet與TreeSet的區別與聯絡
- 關於重定向符>>與>的區別與作用
- fill函式與memset函式的區別(c++)函式C++
- 關於《C++ Templates》C++
- C++基礎::關於區間端點的問題C++
- C++資料型別與C#對應關係C++資料型別C#
- C#與C++型別對應關係總結C#C++型別
- 關於String與StringBuffer的區別
- 關於rman裡面的from 與until的區別
- Objective-C 和 C++ 的區別有哪些?ObjectC++
- C++中的return和exit區別C++
- c++中指標和引用的區別?C++指標
- C++中 struct 和 class 的區別C++Struct
- C++中指標和引用的區別C++指標
- C++和java多型的區別C++Java多型
- C++中struct 和 class的區別C++Struct
- c/c++ 關於swap的不同寫法C++
- c++物件建立帶括號與無括號的區別C++物件
- 一個關於c++字串處理和delete[]與delete差別的問題 (轉)C++字串delete