上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 61 下一页
摘要: bind()是一个函数模板,它的原理是根据已有的模板,生成一个函数,但是由于bind()不知道生成的函数执行的时候,传递进来的参数是否还有效。所以它选择参数值传递而不是引用传递。如果想引用传递,std::ref和std::cref就派上用场了。 #include <functional>#inclu 阅读全文
posted @ 2020-04-07 18:51 MoonXu 阅读(537) 评论(0) 推荐(0) 编辑
摘要: #include <numeric> /home/xpy/1.cpp adjacent_difference()//计算邻差或自定义的操作 partial_sum()//计算前n项和或自定义的操作(如:前n项阶乘) accumulate()//计算前n项和或自定义的操作 inner_product( 阅读全文
posted @ 2020-04-07 11:07 MoonXu 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 交叉编译工具链的命名规则为:arch [-vendor] [-os] [-(gnu)eabi] arch – 体系架构,如ARM,MIPS vendor – 工具链提供商 os – 目标操作系统 eabi – 嵌入式应用二进制接口(Embedded Application Binary Interf 阅读全文
posted @ 2020-04-03 17:23 MoonXu 阅读(664) 评论(0) 推荐(0) 编辑
摘要: cat /proc/filesystems 如果有 nodev nfs 则支持nfs 阅读全文
posted @ 2020-04-03 13:26 MoonXu 阅读(973) 评论(0) 推荐(0) 编辑
摘要: 1. 继承是动多态 2.模板是静多态(ploy.cpp ploy .hpp) ploy.hpp #include <cstdlib>#include <vector>#include <iostream>class Coord { private: int x, y; public: Coord ( 阅读全文
posted @ 2020-03-30 13:22 MoonXu 阅读(158) 评论(0) 推荐(0) 编辑
摘要: print.hpp #ifndef __LINK_HPP#define __LINK_HPP#include <iostream>#include <typeinfo>template<typename T>void print(T const&);#include "print.cpp"templ 阅读全文
posted @ 2020-03-20 14:21 MoonXu 阅读(121) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <string>#include <typeinfo> #define HH 1 #ifdef HHtemplate<typename T>inline T const& max(T const& a, T const& b){ return 阅读全文
posted @ 2020-03-18 18:03 MoonXu 阅读(648) 评论(0) 推荐(0) 编辑
摘要: 模板如果用内建类型初始化,怎么保证变量得到合适的初始化? template<typename T> void foo() { T x;//不能初始化 } 应该这样 template<typename T> void foo() { T x = T();//合适的初始化 } 同样对于类模板 templ 阅读全文
posted @ 2020-03-18 14:28 MoonXu 阅读(158) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <deque>#include <stdexcept>#include <memory>#include <vector>template<typename T, template<typename ELEM, typename = std:: 阅读全文
posted @ 2020-03-18 14:04 MoonXu 阅读(162) 评论(0) 推荐(0) 编辑
摘要: #include <string>#include <iostream>#include <stdexcept> template<typename T, int MAXSIZE>//template<typename T = int, int MAXSIZE = 100>//可以指定默认值!!!c 阅读全文
posted @ 2020-03-12 20:43 MoonXu 阅读(217) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 61 下一页