程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Visual Studio 2010中C++的四大變化(1)

Visual Studio 2010中C++的四大變化(1)

編輯:C++入門知識

在微軟即將發布的Visual Studio 2010正式版中,其對C++語言做了一些修改,之前51cto也報道過Visual Studio 2010中關於C++項目的升級問題,文章則針對C++語言上的一些變化。

Lambda表達式

很多編程編程語言都支持匿名函數(anonymous function)。所謂匿名函數,就是這個函數只有函數體,而沒有函數名。Lambda表達式就是實現匿名函數的一種編程技巧,它為編寫匿名函數提供了簡明的函數式的句法。同樣是Visual Studio中的開發語言,Visual Basic和Visual C#早就實現了對Lambda表達式的支持,終於Visual C++這次也不甘落後,在Visual Studio 2010中添加了對Lambda表達式的支持。

Lambda表達式使得函數可以在使用的地方定義,並且可以在Lambda函數中使用Lambda函數之外的數據。這就為針對集合操作帶來了很大的便利。在作用上,Lambda表達式類似於函數指針和函數對象,Lambda表達式很好地兼顧了函數指針和函數對象的優點,卻沒有它們的缺點。相對於函數指針或是函數對象復雜的語法形式,Lambda表達式使用非常簡單的語法就可以實現同樣的功能,降低了Lambda表達式的學習難度,避免了使用復雜的函數對象或是函數指針所帶來的錯誤。我們可以看一個實際的例子:

  1. #include "stdafx.h"   
  2. #include <algorithm>   
  3. #include <iostream>   
  4. #include <ostream>   
  5. #include <vector>   
  6.  
  7. using namespace std;   
  8.  
  9. int _tmain(int argc, _TCHAR* argv[])   
  10. {   
  11. vector<int> v;   
  12. for (int i = 0; i < 10; ++i) {   
  13. v.push_back(i);   
  14. }   
  15.  for_each(v.begin(), v.end(), [] (int n) {   
  16. cout << n;   
  17. if (n % 2 == 0) {   
  18. cout << " even ";   
  19. } else {   
  20. cout << " odd ";   
  21. }   
  22. });   
  23. cout << endl;   
  24.  
  25. return 0;   
  26. }  
  27. #include "stdafx.h"  
  28. #include <algorithm> 
  29. #include <iostream> 
  30. #include <ostream> 
  31. #include <vector> 
  32.  
  33. using namespace std;  
  34.  
  35. int _tmain(int argc, _TCHAR* argv[])  
  36. {  
  37. vector<int> v;  
  38. for (int i = 0; i < 10; ++i) {  
  39. v.push_back(i);  
  40. }  
  41.  for_each(v.begin(), v.end(), [] (int n) {  
  42. cout << n;  
  43. if (n % 2 == 0) {  
  44. cout << " even ";  
  45. } else {  
  46. cout << " odd ";  
  47. }  
  48. });  
  49. cout << endl;  
  50.  
  51. return 0;  

這段代碼循環遍歷輸出vector中的每一個數,並判斷這個數是奇數還是偶數。我們可以隨時修改Lambda表達式而改變這個匿名函數的實現,修改對集合的操作。在這段代碼中,C++使用一對中括號“[]”來表示Lambda表達式的開始,其後的”(int n)”表示Lambda表達式的參數。這些參數將在Lambda表達式中使用到。為了體會Lambda表達式的簡潔,我們來看看同樣的功能,如何使用函數對象實現:

  1. #include "stdafx.h"   
  2. #include <algorithm>   
  3. #include <iostream>   
  4. #include <ostream>   
  5. #include <vector>   
  6. using namespace std;   
  7.  
  8. struct LambdaFunctor {   
  9. void operator()(int n) const {   
  10. cout << n << " ";   
  11. if (n % 2 == 0) {   
  12. cout << " even ";   
  13. } else {   
  14. cout << " odd ";   
  15. }   
  16.  
  17. }   
  18. };   
  19.  
  20. int _tmain(int argc, _TCHAR* argv[])   
  21. {   
  22. vector<int> v;   
  23.  
  24. for (int i = 0; i < 10; ++i) {   
  25. v.push_back(i);   
  26. }   
  27.  
  28. for_each(v.begin(), v.end(), LambdaFunctor());   
  29. cout << endl;   
  30.  
  31. return 0;   
  32. }  
  33. #include "stdafx.h"  
  34. #include <algorithm> 
  35. #include <iostream> 
  36. #include <ostream> 
  37. #include <vector> 
  38. using namespace std;  
  39.  
  40. struct LambdaFunctor {  
  41. void operator()(int n) const {  
  42. cout << n << " ";  
  43. if (n % 2 == 0) {  
  44. cout << " even ";  
  45. } else {  
  46. cout << " odd ";  
  47. }  
  48.  
  49. }  
  50. };  
  51.  
  52. int _tmain(int argc, _TCHAR* argv[])  
  53. {  
  54. vector<int> v;  
  55.  
  56. for (int i = 0; i < 10; ++i) {  
  57. v.push_back(i);  
  58. }  
  59.  
  60. for_each(v.begin(), v.end(), LambdaFunctor());  
  61. cout << endl;  
  62.  
  63. return 0;  
  64. }  


通過比較我們就可以發現,Lambda表達式的語法更加簡潔,使用起來更加簡單高效。


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