
C++ bug笔记
猫猫与橙子
这个作者很懒,什么都没留下…
展开
-
主函数中struct如何在类中的函数中调用
C++中结构体的extern使用。原创 2016-03-03 10:14:16 · 4674 阅读 · 0 评论 -
今天犯个错:this和对象实例化
问题的样子:经过修改:可以运行了,请问这是为什么,为什么?原创 2016-08-18 16:56:23 · 422 阅读 · 0 评论 -
fatal error LNK1104:无法打开***.exe
这次的程式调试中遇到了fatal error LNK1104: 无法打开***.exe的错误。错误分析:LNK 1104是链接的错误,在链接一些lib或者exe文件时,如果链接路径错误或者无法打开其文件时,就会出 现这类错误。解决方法:1、确保你所用的外部链接库文件路径是正确的: 打开属性-》VC++目录-》库目录 的路径;转载 2016-08-29 16:49:53 · 13036 阅读 · 3 评论 -
Ubuntu16 下载、编译和使用googletest遇错
Ubuntu16 下载、编译和使用googletest参考:https://blog.youkuaiyun.com/ljttianqin/article/details/78543235(参考文献)执行sudo make时遇到遇到以下错误:1./usr/include/c++/5/bits/c++0x_warning.h:32:2: error: #error This file requires c...原创 2018-10-25 13:57:20 · 1837 阅读 · 4 评论 -
C++ string的使用和报错处理
最近在使用c++解析caffe的prototxt文件,编码能力有限,然后就遇到了一些问题:记载如下:1./home/fuxueping/sdb/TensorRT/code/Parse_file/parse_pt.cpp:97: error: no match for ‘operator!=’ (operand types are ‘std::__cxx11::string {aka std...原创 2018-10-26 13:51:41 · 7217 阅读 · 0 评论 -
全局变量上(读写)锁
globel_param.h#pragma once#ifndef GLOBE_PARAM_H#define GLOBE_PARAM_H#include<pthread.h>#include"tensorrt_sdk_error_code.h"typedef struct Globel_Float_{ float nms_thresh_globe; ...原创 2018-12-07 09:05:37 · 3076 阅读 · 0 评论