【原創】C++變數範圍(三)

來源:互聯網
上載者:User

星期六那天突然想到關於extern使用的一種情況,如下:

 1/**/////////////a.h/////////////////////
 2
 3extern int a;
 4
 5/**//////////////////a.cpp////////////////
 6
 7#include "a.h"
 8
 9int a = 7;
10
11/**////////////////b.cpp//////////////////
12
13#include "a.h"
14
15// a = 8;
16
17//a = a+1;             //如果外部變數在這裡作為b.cpp的全域變數賦值時會出錯
18
19int func()
20
21{
22
23  retrun a;
24
25}
26
27int _tmain(int argc, _TCHAR* argv[])
28
29{
30
31  a=a+1;         //而當a作為局部變數賦值時卻不會報錯,且會影響整個項目中a值
32
33  func();
34
35  cout<<a<<endl;
36
37  while(true)
38
39  {
40
41  }
42
43  return 0;
44
45}

至於為什麼能作為局部變數而卻不能作為全域變數本人確實不解,有待以後的瞭解。但是如果要以這麼一種形式來做變數在多個檔案中共用,一定要注意非同步讀寫問題。

文章寫得有點粗略,不過沒有關係,關鍵能真正對技術提高有好處。對自己說,加油!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.