c/c++
sun007700
这个作者很懒,什么都没留下…
展开
-
[C++11]std::promise介绍及使用,std::future
c++原创 2023-03-07 09:36:09 · 156 阅读 · 1 评论 -
c++对象拷贝
c++原创 2023-02-13 22:39:35 · 67 阅读 · 0 评论 -
‘_Py_fopen’ was not declared in this scope; did you mean ‘_Py_wfopen’?
boost原创 2023-02-01 16:36:19 · 454 阅读 · 0 评论 -
./boost/thread/pthread/thread_data.hpp:60:5: error: missing binary operator before token “(“
boost原创 2023-02-01 16:33:23 · 973 阅读 · 0 评论 -
CMake Deprecation Warning at examples/routingmanagerd/CMakeLists.txt:6 (cmake_minimum_required):
cmake原创 2023-01-31 19:50:04 · 1269 阅读 · 0 评论 -
ubuntu 安装boost及使用
boost原创 2023-01-31 18:02:55 · 780 阅读 · 0 评论 -
C/C++】C语言获取编译时间|程序打印编译时间
编译时间原创 2023-01-29 17:46:00 · 1466 阅读 · 0 评论 -
jstring char* string互转
jstring原创 2022-11-09 14:22:22 · 312 阅读 · 0 评论 -
c++ thread线程
thread原创 2022-10-09 17:45:39 · 219 阅读 · 0 评论 -
c++ web ide
c++ ide原创 2022-08-11 20:24:47 · 352 阅读 · 0 评论 -
libc、glibc和glib的关系
glibc原创 2022-06-09 15:59:20 · 288 阅读 · 0 评论 -
Linux C/C++ TCP Socket通信实例
Linux C/C++ TCP Socket通信实例 - zkfopen - 博客园#include<stdio.h>#include<stdlib.h>#include<string.h>#include<errno.h>#include<sys/types.h>#include<sys/socket.h>#include<netinet/in.h>#include<unistd.h&...转载 2021-12-06 09:53:00 · 478 阅读 · 0 评论 -
WebRTC DTLS 分析
WebRTC DTLS 分析_aggresss的专栏-CSDN博客原创 2021-12-03 19:40:36 · 101 阅读 · 0 评论 -
LINUX 检测网线热插拔事件
linux 监测网线插拔状态_Bruce Che 的专栏-CSDN博客#include <sys/types.h> #include <sys/socket.h> #include <asm/types.h> #include <linux/netlink.h> #include <linux/rtnetlink.h> #include <unistd.h>#include <stdlib.h>原创 2021-11-16 19:38:46 · 795 阅读 · 0 评论 -
c语言教程
C 库函数 – remove() | 菜鸟教程原创 2021-11-11 10:58:37 · 849 阅读 · 0 评论 -
golang调用c++库
全面总结: Golang 调用 C/C++,例子式教程 - 指尖下的幽灵 - 博客园全面总结: Golang 调用 C/C++,例子式教程_zdy0_2004的专栏-CSDN博客_go调用c++库导入动态库 .so 或 .dll 的形式 package main /*#cgo CFLAGS: -Iinclude#cgo LDFLAGS: -Llib -llibvideo#include "video.h"*/import "C" import "fmt" func ma原创 2021-11-10 17:02:11 · 529 阅读 · 0 评论 -
vscode通过ssh远程配置c++编译及调试(
vscode通过ssh远程配置c++编译及调试(vscode通过ssh远程配置c++编译及调试(多文件)_sinat_33909696的博客-CSDN博客原创 2021-11-10 14:20:02 · 857 阅读 · 0 评论 -
C语言实现写入日志文件
C语言实现写入日志文件_孙建军的博客-CSDN博客_c语言日志文件#include <stdio.h>#include <stdlib.h>#include <string.h>#include <time.h>#ifdef WIN32#include <windows.h>#else#include <unistd.h> // linux下头文件#endif #define FILE_MAX_SIZE原创 2021-11-10 10:11:43 · 3703 阅读 · 1 评论 -
c++基础
浅谈C语言函数返回值--局部变量和局部变量地址_大飞的江湖-CSDN博客浅谈C语言函数返回值--局部变量和局部变量地址_大飞的江湖-CSDN博客原创 2021-09-09 20:16:17 · 91 阅读 · 0 评论 -
C++ 多态的定义及实现
https://blog.csdn.net/weixin_42678507/article/details/89414998原创 2021-07-31 23:16:13 · 105 阅读 · 0 评论 -
C++左值和右值及其引用以及move函数
https://blog.csdn.net/King_weng/article/details/1005693771、左值和右值 判断依据:可以对表达式取地址&的为左值,否则为右值。当一个对象被用作右值的时候,用的是对象的值(内容);当对象被用作左值的时候,用的是对象的身份(在内存中的位置)。2、右值引用...原创 2021-07-30 23:36:02 · 113 阅读 · 0 评论 -
形参char *argv[],如何传参?
https://bbs.csdn.net/topics/391014879https://blog.csdn.net/tengqi200/article/details/101352520原创 2021-04-20 10:51:32 · 1650 阅读 · 0 评论 -
qt线程
如何正确使用QThreadhttps://www.jianshu.com/p/70159dd91f30Qt QtConcurrent之 Run 函数用法https://luoyayun361.blog.csdn.net/article/details/80288610?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.control&dist_request_i...原创 2021-03-24 17:49:22 · 79 阅读 · 0 评论 -
进程间通信最快速高效的办法是共享内存吗?
进程间通信最快速高效的办法是共享内存吗?https://www.zhihu.com/question/376947069原创 2021-03-23 21:14:20 · 124 阅读 · 0 评论 -
cmake rpath & Makefile rapth
探讨CMake中关于RPATH的使用https://www.cnblogs.com/rickyk/p/3875084.htmlhttp://www.cocoachina.com/articles/110513https://blog.csdn.net/reykou/article/details/105310757cmake rpath & Makefile rapthhttps://blog.csdn.net/cupidove/article/details/548...原创 2021-03-11 18:10:17 · 307 阅读 · 0 评论 -
strdup等c函数
linux C函数之strdup函数分析https://blog.csdn.net/tigerjibo/article/details/12784823#include <syslib.h>#include<string.h>int main(void){ char *src =”This is the jibo”; char *dest; dest = strdup(s); printf(“the dest %s\n”,des原创 2021-03-05 19:27:13 · 179 阅读 · 0 评论 -
qt信号槽
QT5信号与槽https://blog.csdn.net/liujiandu101/article/details/84390269原创 2021-03-01 17:21:45 · 255 阅读 · 0 评论 -
boost::asio::detail::do_throw_error(boost::system::error_code const&, char const*) (err=..., locatio
有时候会报boost相关的错误,如下:此时需要重新编译程序即可以解决bt#0 0x00007feb7ad2470f in raise () at /lib64/libc.so.6#1 0x00007feb7ad0eb25 in abort () at /lib64/libc.so.6#2 0x00007feb7b8f909b in __gnu_cxx::__verbose_terminate_handler() [clone .cold.1] () at /lib64/libstdc...原创 2021-02-20 16:59:41 · 562 阅读 · 0 评论 -
c++数组
https://blog.csdn.net/lixinglaing/article/details/81434608 bool* array = new bool[10]; //未初始化 bool* array = new bool[10](); //初始化为0//shared_ptr<char[]>data=make_shared<char[]>(len);//std::shared_ptr<char[]>...原创 2021-01-04 12:00:19 · 202 阅读 · 0 评论 -
in/ld: src/opusenc-resample.o: undefined reference to symbol ‘sin@@GLIBC_2.2.5‘
in/ld: src/opusenc-resample.o: undefined reference to symbol 'sin@@GLIBC_2.2.5'添加 -lm原创 2020-12-28 10:32:43 · 236 阅读 · 0 评论 -
c++ 报错 malloc(): unsorted double linked list corrupted
malloc(): unsorted double linked list corrupted报这个错误,是因为 在 代码 中,指针指向了 已经释放的内存(临时变量)等。原创 2020-12-18 19:36:23 · 4736 阅读 · 1 评论 -
configure文件中如何加入其它库
https://bbs.csdn.net/topics/240012376https://www.cnblogs.com/simonid/p/6374306.html原创 2020-12-11 10:37:06 · 1220 阅读 · 0 评论 -
G3D 渲染引擎简介
https://blog.csdn.net/xiangzhihong8/article/details/80885186原创 2020-12-11 10:15:33 · 634 阅读 · 1 评论 -
srs日志打印参考
if (!log_to_file_tank) { // if is error msg, then print color msg. // \033[31m : red text code in shell // \033[32m : green text code in shell // \033[33m : yellow text code in shell // \033[0m : normal text c...原创 2020-12-04 15:22:15 · 415 阅读 · 0 评论 -
让 WebRTC 使用外部的音视频编解码器
https://blog.csdn.net/foruok/article/details/70237019原创 2020-11-23 09:28:22 · 707 阅读 · 0 评论 -
vc-vs2019编译报错总结
NOMINMAXWIN32_LEAN_AND_MEAN): error C2011: “sockaddr”:“struct”类型重定义https://blog.csdn.net/ccnu027cs/article/details/103593923原创 2020-11-22 15:28:43 · 674 阅读 · 2 评论 -
Selecting Windows SDK version 10.0.19041.0 to target Windows 10.0.17763. 缺失丢失
cmake的时候缺少Selecting Windows SDK version 10.0.19041.0 to target Windows 10.0.17763.The C compiler identification is MSVC 19.28.29333.0The CXX compiler identification is MSVC 19.28.29333.0Detecting C compiler ABI info控制面板,卸载 掉其他的, 只留这一个。...原创 2020-11-18 15:27:14 · 8005 阅读 · 3 评论 -
C++ websocket服务器与客户端库websocketpp
https://my.oschina.net/u/4299887/blog/4255393https://github.com/zaphoyd/websocketpphttps://www.cnblogs.com/MakeView660/p/12780772.htmlwebsocketpp官方非官方翻译指南(上http://www.esstudio.cn/?thread-26.htmwindows下搭建websocketpp开发环境以及前端处理二进制流https://bl..原创 2020-11-13 15:03:45 · 852 阅读 · 0 评论 -
网络类库asio-1.18.0 替换 boost
从boost中提取的网络类库,大大减少开发者安装boost库的时间和体积.https://sourceforge.net/projects/asio///Use http://think-async.com/ instead of boost#define ASIO_STANDALONED:\work\code\client\obs\lib\asio-1.18.0\include使用asio(non-boost)库编译出错:包含asio头文件后提示找不到config.h..原创 2020-11-13 14:35:30 · 392 阅读 · 0 评论 -
CMake list index: 1 out of range (-1, 0
cmake 报这个错误,一般是因为list 索引越界,打印下 list长度和内容即可。原创 2020-11-12 20:43:35 · 687 阅读 · 2 评论