第一次使用std::thread,把之前项目里面的Windows的thread进行了替换,程序退出的然后发生了std::system_error. 经过调试,发现std::thread ,join了两次导致的(一次是手动调用UnInit,一次是在析构函数又调用了UnInit).而Windows,closehandle时进行了NULL的校验. 使用std::thread的时候要小心,当thread被join或者detach后,避免再进行操作.…
boost 1.60.0 先上代码: #include <boost/thread.hpp> #include <iostream> void add(int &i) { std::cout<<"in add, befor ++i, i: "<<i<<std::endl; ++i; std::cout<<"in add, after ++i, i: "<<i<<s…
上一讲<C++11 并发指南四(<future> 详解二 std::packaged_task 介绍)>主要介绍了 <future> 头文件中的 std::packaged_task 类,本文主要介绍 std::future,std::shared_future 以及 std::future_error,另外还会介绍 <future> 头文件中的 std::async,std::future_category 函数以及相关枚举类型. std::future…
上一讲<C++11 并发指南四(<future> 详解二 std::packaged_task 介绍)>主要介绍了 <future> 头文件中的 std::packaged_task 类,本文主要介绍 std::future,std::shared_future 以及 std::future_error,另外还会介绍 <future> 头文件中的 std::async,std::future_category 函数以及相关枚举类型. std::future…
一. std::promise和std::package_task (一)共享状态.提供者和管理者 // CLASS TEMPLATE _Promise template <class _Ty> class _Promise { // class that implements core of promise public: _Promise(_Associated_state<_Ty>* _State_ptr) : _State(_State_ptr, false), _Futu…
一. “共享状态” (一)“共享状态”对象 1. 用于保存线程函数及其参数.返回值以及新线程状态等信息.该对象通常创建在堆上,由std::async.std::promise和std::package_task等提供(Provider),并交由future/shared_future管理. 2. Provider将计算结果写入“共享状态”对象,而future/shared_future通过get()函数来读取该结果.“共享状态”作为异步结果的传输通道,future可以从中方便地获取线程函数的返回…
对于OpenCV的安装 要感谢网友空晴拜小白提供的教程 链接如下: https://blog.csdn.net/sinat_36264666/article/details/73135823?ref=myread#reply 教程写的十分详细 截图什么的也很好 2 问题描述今天在安装和测试OpenCV的时候遇到了这样的问题 测试代码如下 #include <opencv2/opencv.hpp>#include <iostream>using namespace std;using…
上一讲<C++11 并发指南四(<future> 详解二 std::packaged_task 介绍)>主要介绍了 <future> 头文件中的 std::packaged_task 类,本文主要介绍 std::future,std::shared_future 以及 std::future_error,另外还会介绍 <future> 头文件中的 std::async,std::future_category 函数以及相关枚举类型. std::future…
c++11中增加了线程,使得我们可以非常方便的创建线程,它的基本用法是这样的: void f(int n); std::thread t(f, n + 1); t.join(); 但是线程毕竟是属于比较低层次的东西,有时候使用有些不便,比如我希望获取线程函数的返回结果的时候,我就不能直接通过thread.join()得到结果,这时就必须定义一个变量,在线程函数中去给这个变量赋值,然后join,最后得到结果,这个过程是比较繁琐的.c++11还提供了异步接口std::async,通过这个异步接口可以…
目录 传统同步方案的缺点 folly/Synchronized.h 简单使用 Synchronized的模板参数 withLock()/withRLock()/withWLock() -- 更易用的加锁方式 升级锁 ulock()和 withULockPtr() Timed Locking Synchronized 与 std::condition_variable acquireLocked() -- 同时锁多个数据 使用一把锁,锁多个数据 struct std::tuple Benchmar…
http://stackoverflow.com/questions/20516773/stdunique-lockstdmutex-or-stdlock-guardstdmutex The difference is that you can lock and unlock a std::unique_lock. std::lock_guard will be locked only once on construction and unlocked on destruction. So fo…
huffman coding, greedy algorithm. std::priority_queue, std::partition, when i use the three commented lines, excution time increase to 15ms from 0ms, due to worse locality? thanks to http://acm.hdu.edu.cn/discuss/problem/post/reply.php?action=support…
下面为测试代码: 1.创建 std::vector< std::vector<string> > vc2; 2.初始化 std::vector<string> vc; vc.push_back("v11"); vc.push_back("v12"); vc.push_back("v13"); std::vector<string> v2; v2.push_back("v21");…
从最基础的了解,std::bind和std::function /* * File: main.cpp * Author: Vicky.H * Email: eclipser@163.com */ #include <iostream> #include <functional> #include <typeinfo> #include <string.h> int add1(int i, int j, int k) { return i + j + k;…
我在实现<OpenCV2计算机视觉编程手册>第2章 2.2 节 存取像素值 中的椒盐噪声例子中遇到的程序错误. 原始输入程序: #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv.hpp> //2.2节中的程序,但是出现问题 using namespace cv; void salt(Mat & , int ); int ma…
LeetCode 26 Remove Duplicates from Sorted Array [Array/std::distance/std::unique] <c++> 给出排序好的一维数组,删除其中重复元素,返回删除后数组长度,要求不另开内存空间. C++ 很简单的题目,但是第一发RE了,找了很久问题出在哪.最后单步调试发现vector.size()返回值是unsigned型的.unsigned型和int型数据运算结果还是unsigned型的.这就导致当数组为空时,nums.size(…
错误显示:没有与这些操作数匹配的 "<<" 运算符       操作数类型为:  std::ostream << std::string 错误改正:要在头文件中加入<string>头函数…
MATLAB部分: xmap = repmat( linspace( -regionW/2, regionW/2, regionW), regionH, 1 );%linspace [x1,x2,N] 等差数列 ymap = repmat( linspace( -regionH/2, regionH/2, regionH)', 1, regionW); %转置 %compute the angle of the vector p1-->p2 vecp1p2 = labelData(2,:) -…
C++多线程编程中通常会对共享的数据进行写保护,以防止多线程在对共享数据成员进行读写时造成资源争抢导致程序出现未定义的行为.通常的做法是在修改共享数据成员的时候进行加锁--mutex.在使用锁的时候通常是在对共享数据进行修改之前进行lock操作,在写完之后再进行unlock操作,进场会出现由于疏忽导致由于lock之后在离开共享成员操作区域时忘记unlock,导致死锁. 针对以上的问题,C++11中引入了std::unique_lock与std::lock_guard两种数据结构.通过对lock和…
c++二分查找的用法 主要是 std::binary_serach,  std::upper_bound以及std::lower_bound 的用法,示例如下: std::vector<int> vtr; ; i < ; i++) { == ) vtr.push_back(i); } auto find = [&](int num){ return std::binary_search(vtr.begin(), vtr.end(), num); //二分查找num是否存在 };…
C++多线程编程中通常会对共享的数据进行写保护,以防止多线程在对共享数据成员进行读写时造成资源争抢导致程序出现未定义的行为.通常的做法是在修改共享数据成员的时候进行加锁--mutex.在使用锁的时候通常是在对共享数据进行修改之前进行lock操作,在写完之后再进行unlock操作,进场会出现由于疏忽导致由于lock之后在离开共享成员操作区域时忘记unlock,导致死锁. 针对以上的问题,C++11中引入了std::unique_lock与std::lock_guard两种数据结构.通过对lock和…
/* * File: main.cpp * Author: Vicky.H * Email: eclipser@163.com */ #include <iostream> #include <functional> #include <typeinfo> #include <string.h> int add1(int i, int j, int k) { return i + j + k; } class Utils { public: Utils(co…
/usr/include/c++/4.8/functional:1697:61: error: no type named ‘type’ in ‘class std::result_of<std::_Mem_fn<void 看的上面的错误. 之后Google 了,结合下面两个链接才解决. https://segmentfault.com/q/1010000004413576 http://stackoverflow.com/questions/28950835/c-error-no-type-…
//lamda //first lamda [] {}; // second lamda []() //or no need () when paramater is null { std::cout << "second" << std::endl; }();// last add(), express will call this lamda func // 3 with return type auto kkk = []() { return 1; }()…
There is a critical difference between std::fill and memset that is very important to understand. std::fill sets each element to the specified value. memset sets each byte to a specified value. While they won't produce incorrect results when used app…
std:: lower_bound 该函数返回范围内第一个不小于(大于或等于)指定val的值.如果序列中的值都小于val,则返回last.序列应该已经有序! eg: #include <iostream> #include <vector> #include <algorithm> using namespace std; int main(int argv,char **argc) { vector<,,,}; cout<<"v1=&quo…
上次看到这个有点晕了,其实这个vector保存的是std::vector<> #include <vector> #include <iostream> using namespace std; int main() { std::vector<std::vector<int> > num; std::vector<, ); num.push_back(a); a.push_back(); num.push_back(a); std::co…
原文来自: https://shendrick.net/Coding%20Tips/2015/03/15/cpparrayvsvector.html @Seth Hendrick Original article: https://shendrick.net/Coding%20Tips/2015/03/15/cpparrayvsvector.html @Seth Hendrick C-Style 数组 赋值 int myArray[3] = {1, 2, 3}; 数组与指针 a[1]等价于*(a…
标题是搞笑的 ! 这个问题只需要 since C++11 问题:怎么让 unordered_map 支持使用 pair 作为 key? 如果你能把两个东西压到一个基本类型里那么就不用解决这个问题了 . 我们需要手写一个 Hash 函数吧 . 如果你用 xor 会被轻易卡掉 注意 unordered_map 如果哈希冲突了是单次线性的 . 事实证明一个有效的 Hash 函数是能加快程序运行速度的 . #include <functional> // from boost (functional/…
前几天程序新加一个功能之后,其中用到了boost的lexical_cast<float>,发现在关闭命令行窗口的时候,程序报错,是程序退出清理时候报的错误. 一开始以为是程序新增的功能有问题,发现去除新功能之后,随便在一个函数中使用lexical_cast<float>,程序在退出的时候都会报错. 所以怀疑是自己程序功能异常,包括可能的堆栈异常,针对lexical_cast<float>部分的数据内存都进行了检查,都没有问题.而且将lexical_cast<flo…