C++TR1和C++0x简单介绍

本文介绍了C++ TR1和技术报告C++0x的相关内容。C++ TR1作为C++标准库的首次扩展,包含了如智能指针、正则表达式等重要功能。而C++0x则是C++语言计划中的新标准,旨在取代C++98和C++03,并在核心语言和标准库方面进行大量增强。
摘要由CSDN通过智能技术生成

C++TR1和C++0x是什么呢?下面简单介绍一下C++TR1和C++0x的内容。   

C++ Technical Report 1 (TR1)是ISO/IEC TR 19768, C++ Library Extensions(函式库扩充)的一般名称。TR1是一份文件,内容提出了对C++标准函式库的追加项目。这些追加项目包括了正则表达式、智能指针、哈希表、随机数生成器等。TR1自己并非标准,他是一份草稿文件。然而他所提出的项目很有可能成为下次的官方标准。这份文件的目标在于「为扩充的C++标准函式库建立更为广泛的现成实作品」。
   
    C++ tr1是针对C++标准库的第一次扩展。即将到来的下一个版本的C++标准c++0x会包括它,以及一些语言本身的扩充。tr1包括大家期待已久的smart pointer,正则表达式以及其他一些支持范型编程的东东。草案阶段,新增的类和模板的名字空间是std::tr1.
   英文官方的介绍:
    C++ Technical Report 1 (TR1) is the common name for ISO/IEC TR 19768, C++ Library Extensions, which is a document proposing additions to the C++ standard library. The additions include regular expressions, smart pointers, hash tables, and random number generators. TR1 is not a standard itself, but rather a draft document. However, most of its proposals are likely to become part of the next official standard. In the meantime, vendors can use this document as a guide to create extensions. The report's goal is “to build more widespread existing practice for an expanded C++ standard library.”
   
    C++0x (pronounced see plus plus oh ex)[1] is the unofficial name of the planned new standard for the C++ programming language. It is intended to replace the existing C++ standard, ISO/IEC 14882, which was published in 1998 and updated in 2003. These predecessors are informally known as C++98 and C++03. The new standard will include several additions to the core language and will extend the C++ standard library, incorporating most of the C++ Technical Report 1 (TR1) libraries - most likely with the exception of the library of mathematical special functions.
   一个简单的实例:
    using std::tr1::function
   
    This is a simple example of using std::tr1::function. 
  
    #include “stdafx.h”
    #include <iostream>
    #include <vector>
    #include <functional>
    //using std::tr1::function;
    typedef std::tr1::function< long (int,int) >Callback;
    typedef std::vector<Callback> Callbacks;
    Callbacks callbacks;
   
    long myfunction(int a,int b)
    {
    std::cout 《 “Function Called \n”;
    return 12;
    }
   
    int _tmain(int argc, _TCHAR* argv[])
    {
    //Now callbacks is a vector lets resize it
    callbacks.resize(1);
    //Now store address of myfunction in callback
    callbacks[0]= &myfunction;
    //Now call the function using the cector and passing 5 as parameter
    Callback& callback = callbacks[0];
    std::cout 《 callback(12,14);
    std::cin.get();
    return 0;
    }

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值