shared_ptr shared std ptr

启动Nginx报错:error while loading shared libraries: libpcre.so.0: cannot open shared object file

1.现象: 输入:/usr/local/nginx/sbin/nginx 报错:/usr/local/nginx/sbin/nginx: error while loading shared libraries: libprofiler.so.0: cannot open shared object ......
shared libraries loading libpcre cannot

std::istringstream的用法

1.概要 std::istringstream 是 C++ 标准库中的一个类,它用于从字符串中提取数据,并将数据转换为不同的数据类型。它通常用于从字符串中解析数据,例如整数、浮点数等。以下是关于 std::istringstream 的详细用法: 创建 std::istringstream 对象: ......
istringstream std

std::function逆向还原

std::function的内存结构 本文案例地址:https://wwmf.lanzout.com/b029diasb 密码:areg std::function为lamda函数时 本文的代码都是32位为例 vftable 首先我们可以从Func_impl_no_alloc_V_lambda得知这 ......
function std

Detected non-NVML platform: could not load NVML: libnvidia-ml.so.1: cannot open shared object

前言 在 kubernetes 中配置 https://github.com/NVIDIA/k8s-device-plugin 时, 报错:Detected non-NVML platform: could not load NVML: libnvidia-ml.so.1: cannot open ......

ImportError: libcrypto.so.3: cannot open shared object file: No such file or directory

ImportError: libcrypto.so.3: cannot open shared object file: No such file or directoryBuilding wheel for pysam (pyproject.toml) ...https://github.com/ ......
file ImportError libcrypto directory cannot

samtools: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory

001、问题:conda安装samtools后调用出现如下报错: samtools: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or d ......
shared file directory libraries libcrypto

std::function

参考资料 • cplusplus.com:http://www.cplusplus.com/reference/functional/function/ https://www.cnblogs.com/heartchord/p/5017071.html • cppreference.com:http ......
function std

Linux C语言Shared Library共享库细节探究

开发中遇到一个问题,比如有一个类库A,被类库B引用,类库B和类库A都被程序C引用。类库A中有一个全局变量G,要求同一个进程中使用的是同一个全局变量G。 虽然看起来很简单,但是实际探究下来还有不少坑。 如果不是类库 如果A B都不是类库,而是直接引入源码编译,理论上比较方便解决。 示例一 pre.h ......
细节 Library 语言 Shared Linux

./a.out: error while loading shared libraries: libgsl.so.25: cannot open shared object file: No such file or directory

001、问题: ./a.out: error while loading shared libraries: libgsl.so.25: cannot open shared object file: No such file or directory 002、解决方法 [root@pc1 test ......
shared file directory libraries loading

疑似std::regex_search正则匹配,导致堆栈错误

一个很奇怪的问题,当我_beginthreadex/CreateThread创建线程,使用std::regex_search匹配时,程序会崩溃,堆栈如下: ntdll.dll!RtlReportCriticalFailure() 未知 ntdll.dll!RtlpHeapHandleError( ......
堆栈 正则 regex_search 错误 search

Error while loading conda entry point: conda-libmamba-solver (libarchive.so.19: cannot open shared object file: No such file or directory) 报错消息解决方法

本人使用 centos:7.6.1810 及 Miniconda3-py311_23.5.2-0-Linux-x86_64 默认状态下应该没有这个问题。 当在使用conda下载包时,如果不小心更新了涉及conda-libmamba-solver 和 libarchive的包,就可能会导致这个报错消息 ......

std::vector::sort

std::sort(vector.begin(),vector.end(),[](int a,int b){ if(a==1)return false;//a为1就将这个1排在最后,因为返回的是false if(b==1)return true;//还是将1排在最后 return a>b;//降序排 ......
vector sort std

使用 C++11 原子类型 `std::atomic_flag` 实现的自旋锁

使用 C++11 原子类型 std::atomic_flag 实现的自旋锁: #include <atomic> class Spinlock { public: Spinlock(): flag(ATOMIC_FLAG_INIT) {} void lock() { while (flag.test ......
原子 atomic_flag 类型 atomic flag

C++多线程Multithreading std::condition_variable

多线程Multithreading #include <iostream> #include <thread> #include <mutex> #include <condition_variable> std::mutex mtx; std::condition_variable cv; boo ......

库函数 | C++17 std::filesystem文件系统 用法指北

本文将针对常用的场景,对 std::filesystem 的使用逐一进行验证: 判断文件夹是否存在 创建单层目录 逐级创建多层目录 创建多级目录 当前文件路径 创建文件"from.dat" 获取相对于base的绝对路径 文件拷贝 移动文件或重命名 创建文件 “example.dat” 获取文件大小 ......
filesystem 函数 文件 系统 std

原子操作量 std::atomic<bool>

相较于普通的bool,std::atomic<bool>有以下优点 `std::atomic<bool>` 和普通的 `bool` 之间有几个重要区别,主要涉及多线程环境下的并发访问和修改: 1. 原子性操作: `std::atomic<bool>` 提供了原子性操作,这意味着在多线程环境下,它的读 ......
原子 atomic bool std lt

Can't locate Env.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl

001、问题 Can't locate Env.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl 002、解决方法 (base) [root@pc1 MaSuRCA-4.1.0]# yum -y insta ......
local perl INC usr contains

C++11中std::ref()与&

C++11中std::ref()与& 引言 最近看到一个多线程代码如下: typedef unsigned long long ULL; void accumulator_function(const std::vector<int> &v, ULL &acm, unsigned int begin ......
std ref amp 11

C++ | 智能指针之模仿实现shared_ptr

template<class T> class Shared_pointer{ private: ssize_t *_ref_count; // 计数器的指针 T *_ptr; // 元素的指针 std::mutex *mtx; // 计数器的锁 public: explicit Shared_po ......
指针 shared_ptr 智能 shared ptr

C++ | 完美转发:std::forward

引用折叠 template <class T> void func(T && arg); 若一个右值引用(&&)参数被一个左值或左值引用初始化,那么引用将折叠为左值引用。(即:T&& & –> T&) int a = 1; func(a); // func()中 参数arg 变成 int &类型 i ......
forward std

shared_ptr在多线程下的安全性问题

1. 引用 boost官方文档中有如下结论: https://www.boost.org/doc/libs/1_57_0/libs/smart_ptr/shared_ptr.htm#ThreadSafety 1)同一个shared_ptr被多个线程“读”是安全的; 2)同一个shared_ptr被多 ......
线程 shared_ptr 安全性 shared 问题

C++ std::this_thread知识整理

std::this_thread::get_id() std::this_thread::yield()std::this_thread::sleep_for ()std::this_thread::sleep_until () 文章目录前言一、this_thread 是什么?二、使用步骤1.引入库 ......
this_thread 知识 thread this std

keepalived 报错/usr/sbin/keepalived: error while loading shared libraries: /lib64/libnetsnmpmibs.so.31: file too short的解决

yum install keepalived的时候提示需要一下包 Installing: keepalived x86_64 1.3.5-19.el7 base 332 kInstalling for dependencies: net-snmp-agent-libs x86_64 1:5.7.2- ......

手撕智能指针shared_ptr

#include <bits/stdc++.h> using namespace std; class Count { private: int cnt; public: Count() :cnt(1) {} ~Count() = default; void addcount() { ++cnt; ......
指针 shared_ptr 智能 shared ptr

C++11中的智能指针shared_ptr、weak_ptr源码解析

https://www.jb51.net/article/224028.htm − 目录 1、前言 2、源码准备 3、智能指针概念 4、源码解析 4.1、shared_ptr解析 4.1.1、shared_ptr 4.1.2、__shared_ptr 4.1.3、__shared_count 4.1 ......
指针 shared_ptr ptr 源码 weak_ptr

WSL 炼丹报错:Could not load library libcudnn_cnn_infer.so.8. Error: libcuda.so: cannot open shared object file: No such file or directory

确认驱动没问题(nvidia-smi 可以正常使用) 解决办法参照:https://github.com/pytorch/pytorch/issues/85773#issuecomment-1288033297 内容如下: ......

C++完美转发为什么必须要有std::forward?

先看一种情况,它的输出结果是什么? #include <iostream> using namespace std; void F(const int &a) { cout << "int: " << a << endl; } void F(int &&a) { cout << "int &&: " ......
forward std

[RxJS] Write Subject & Share operator

class Observable { constructor(subscribe) { this._subscribe = subscribe; } subscribe(observer) { return this._subscribe(observer); } static concnat(.. ......
operator Subject Write Share RxJS

const char *ptr和char const *ptr以及char* const ptr的区别

const char *ptr 和 char const *ptr => 这里这么理解,这个表示的是*ptr, 也就是指针指向的值,而修饰这个指针指向的值 (*ptr)的是const char或者char const, 表示两个意思: const => 表示是个常量,也就是说*ptr这个指针指向的值 ......
const char ptr