搜索结果
查询Tags标签: Auto,共有 324条记录-
9 使用析构函数防止资源泄漏
有以下函数: void function() {Awesome * obj = new Awesome;obj->process();delete obj; }当process发生异常时,function没有捕获异常;异常将会被传递到function的调用者,而process之后的代码则被跳过了,导致内存泄漏。 void function() {Awesome * obj = new Aw…
2021/8/19 23:07:23 人评论 次浏览 -
linux alias设置
临时设置alias cp=cp –iunalias cp 取消系统的别命令alias rm=rm -f alias ...=cd ../.. alias ....=cd ../../../ alias egrep=egrep --color=auto alias grep=grep --color=auto alias l.=ls -d .* --color=auto alias ll=ls -l --color=auto alias ls=ls --colo…
2021/8/17 7:06:25 人评论 次浏览 -
linux alias设置
临时设置alias cp=cp –iunalias cp 取消系统的别命令alias rm=rm -f alias ...=cd ../.. alias ....=cd ../../../ alias egrep=egrep --color=auto alias grep=grep --color=auto alias l.=ls -d .* --color=auto alias ll=ls -l --color=auto alias ls=ls --colo…
2021/8/17 7:06:25 人评论 次浏览 -
C++ STL中的lower_bound,upper_bound使用小结
首先记得 #include < algorithm > 在vector中使用 lower_bound作用 在 非递减序列中 找到 第一个大于或者等于 某个元素的位置,如果找得到,返回相应的迭代器,否则,返回范围中的尾迭代器。 使用示例 vector<int> nums = { 3,2,4,1,5 }; sort(nums.begin(),…
2021/8/15 14:35:50 人评论 次浏览 -
C++ STL中的lower_bound,upper_bound使用小结
首先记得 #include < algorithm > 在vector中使用 lower_bound作用 在 非递减序列中 找到 第一个大于或者等于 某个元素的位置,如果找得到,返回相应的迭代器,否则,返回范围中的尾迭代器。 使用示例 vector<int> nums = { 3,2,4,1,5 }; sort(nums.begin(),…
2021/8/15 14:35:50 人评论 次浏览 -
Nutch源码
在URLNormalizers构造函数中, this.extensionPoint =PluginRepository.get(conf).getExtensionPoint(URLNormalizer.X_POINT_ID);看1下PluginRepository.get函数: public static synchronizedPluginRepository get(Configuration conf) {PluginRepository result = CACH…
2021/8/13 20:06:25 人评论 次浏览 -
Nutch源码
在URLNormalizers构造函数中, this.extensionPoint =PluginRepository.get(conf).getExtensionPoint(URLNormalizer.X_POINT_ID);看1下PluginRepository.get函数: public static synchronizedPluginRepository get(Configuration conf) {PluginRepository result = CACH…
2021/8/13 20:06:25 人评论 次浏览 -
C++基础-auto(自动分配属性)和decltype(指定分配属性)
1.atuo 自动分配属性,但是不能区分常量, decltype可以区分常量const vector<int> myint{1, 2, 3, 4, 5}; auto inta = myint[0]; inta = 20;decltype(myint[0]) intd = 1; intd = 2; //报错,因为此时的intd是常量属性2.auto不能区分引用,decltype可以区分引用doub…
2021/8/10 1:06:02 人评论 次浏览 -
C++基础-auto(自动分配属性)和decltype(指定分配属性)
1.atuo 自动分配属性,但是不能区分常量, decltype可以区分常量const vector<int> myint{1, 2, 3, 4, 5}; auto inta = myint[0]; inta = 20;decltype(myint[0]) intd = 1; intd = 2; //报错,因为此时的intd是常量属性2.auto不能区分引用,decltype可以区分引用doub…
2021/8/10 1:06:02 人评论 次浏览 -
052.PGSQL-search_path参数 修改了postgresql.conf没有生效 ,应该修改这个配置postgresql.auto.conf文件。postgresql.auto.conf修
search_path修改了postgresql.conf没有生效 ,应该修改这个配置postgresql.auto.conf文件修改了postgresql.conf没有生效 优先级 postgresql.auto.conf > postgresql.conf方法1 修改 postgresql.auto.conf[root@s101 /var/lib/pgsql/13/data]#nano postgresql.auto.c…
2021/8/6 2:06:26 人评论 次浏览 -
052.PGSQL-search_path参数 修改了postgresql.conf没有生效 ,应该修改这个配置postgresql.auto.conf文件。postgresql.auto.conf修
search_path修改了postgresql.conf没有生效 ,应该修改这个配置postgresql.auto.conf文件修改了postgresql.conf没有生效 优先级 postgresql.auto.conf > postgresql.conf方法1 修改 postgresql.auto.conf[root@s101 /var/lib/pgsql/13/data]#nano postgresql.auto.c…
2021/8/6 2:06:26 人评论 次浏览 -
小程序回到程序顶部
新加按钮 bindtap = “getTop” data:{scrollTop:‘’ }getTop() { if (wx.pageScrollTo) { wx.pageScrollTo({ scrollTop: 0, //创建变量 }) } else { wx.showModal({ title…
2021/8/3 20:09:06 人评论 次浏览 -
小程序回到程序顶部
新加按钮 bindtap = “getTop” data:{scrollTop:‘’ }getTop() { if (wx.pageScrollTo) { wx.pageScrollTo({ scrollTop: 0, //创建变量 }) } else { wx.showModal({ title…
2021/8/3 20:09:06 人评论 次浏览 -
C++ 智能指针 - 全部用法详解
为什么要学习智能指针? 咳咳,这个问题不是问大家的,是询问我自己的! 我依稀记得刚离校出来找实习工作那会,去面试一份工作,其中有一个环节需要答题;有一道题目就是问什么是智能指针?卧槽?当时我就懵逼,智能指针我压根就没有听说过… 最后,面试的这份工作理所应…
2021/8/2 14:06:34 人评论 次浏览 -
C++ 智能指针 - 全部用法详解
为什么要学习智能指针? 咳咳,这个问题不是问大家的,是询问我自己的! 我依稀记得刚离校出来找实习工作那会,去面试一份工作,其中有一个环节需要答题;有一道题目就是问什么是智能指针?卧槽?当时我就懵逼,智能指针我压根就没有听说过… 最后,面试的这份工作理所应…
2021/8/2 14:06:34 人评论 次浏览