您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. C++标准(Standard for Programming Language C++)

  2. 该资源不适合C、C++初学者,可作为C++高手向大师级进化的参考书。 内容: ... 17 Library introduction 17.1 General 17.2 The C standard library 17.3 Definitions 17.4 Additional definitions 17.5 Method of descr iption (Informative) 17.6 Library-wide requirements 18 Language support lib
  3. 所属分类:C

    • 发布日期:2009-12-15
    • 文件大小:10mb
    • 提供者:labplant
  1. C++ 标准 ISO 14882-2011

  2. Contents Contents iii List of Tables xi List of Figures xv 1 General 1 1.1 Scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 1.2 Normative references . . . . . . . . . . . . . . . . . . . . . . .
  3. 所属分类:C++

    • 发布日期:2013-05-26
    • 文件大小:14mb
    • 提供者:crbboy
  1. Google C++ International Standard.pdf

  2. Contents Contents ii List of Tables x List of Figures xiv 1 Scope 1 2 Normative references 2 3 Terms and definitions 3 4 General principles 7 4.1 Implementation compliance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 4.2 St
  3. 所属分类:C/C++

  1. 网格高级编程中的主题-源码

  2. 编程ex4的高级主题-网格实现 网格 网格包含用于存储单元的std :: vector数组。 数组的大小为num_rows + 1,最后一个元素是一个空向量,用于标记网格的结尾(用于迭代网格)。 第一行从北极开始(纬度90),最后一行从南极开始(纬度-90) 细胞 每个单元格都有一个行索引和一个列索引,代表了它在网格中的位置。 单元格还包含一个entityMap,它将std :: type_index映射到std :: vector >。 单元格的坐标表示其中心。 CellItera
  3. 所属分类:其它

    • 发布日期:2021-02-28
    • 文件大小:24kb
    • 提供者:weixin_42127937
  1. std::type_index

  2. typeid运算符,返回类型信息const std::type_info&。这种类型是不能赋值的。例如: const std::typeinfo& a = typeid(int); //初始化可以 a = typeid(double); //再赋值就是错误 为了解决这个问题,C++引入了std::type_index类。这个类可以理解为封装了一个指向typeinfo的指针。理论上,std::type_index是值语义的。例如: std::type_index a = typeid(in
  3. 所属分类:其它

    • 发布日期:2021-01-20
    • 文件大小:31kb
    • 提供者:weixin_38547035