首页 » c++
解决windows下openssl错误undefined reference to `PEM_read_RSA_PUBKEY'
操作系统:windows开发软件:code::blocks编程语言:c++今天使用code::blocks测试openssl中的RSA算法,一直报错误:undefined reference to `PEM_read_RSA_PUBKEY'网上查了半天资料,也没给说明白是哪里的问题,大部分都是linux的方法,没有windows的,最终找到了解决办法:cod...
热门
error: 'memset' was not declared in this scope
C++调用memset函数的时候出现错误提示:error: 'memset' was not declared in this scope 出现此提示的原因是:没有引入头文件<string>,有些电脑必须要用<string.h>才可以,我类个去。。 #include <string>//这个不行就用下面...
热门
C++创建定时器SetTimer时钟
#include<iostream> #include<Windows.h> #include <thread> using namespace std; #define ID_TIMER 0 void CALLBACK event(HWND hwnd, UINT message, UINT iTimer...
热门
C++多线程操作的两种方法thread和CreateThread
本文介绍了两种在C++中使用多线程的方法,第一种方法比较简单,适合常规使用。第二种方法适合更复杂的情况下使用。 #include <thread> #include <iostream> #include <windows.h> using namespace std; //方法一线程调用函数 vo...
热门
C++字符串分割char分割split
#include <string.h> #include <stdio.h> #include <iostream> #include <vector> using namespace std; //将char数组分割,并返回分割后的数组,split(原始字符串,分隔符,接收数组)...
热门
PHP与C++进行IPC命名管道共享内存通信
C++代码:#include <iostream> #include <windows.h> using namespace std; int main() { while(1) { // 创建管道服务器 char strPipeName[] = "\\\\.\\pipe\\tongxun"...
热门
C++字符串和时间之间的转换
1、常用的时间存储方式 1)time_t类型,这本质上是一个长整数,表示从1970-01-01 00:00:00到目前计时时间的秒数,如果需要更精确一点的,可以使用timeval精确到毫秒。 2)tm结构,这本质上是一个结构体,里面包含了各时间字段 struct tm { int tm_sec; /* seconds after the minute -...
热门
c++批量快速删除大文件大文件夹[源码]
使用方法:将需要删除的文件和文件夹一起选中,然后拖放到程序图标上,在弹出的窗口中按提示操作即可。 源代码:#include <iostream> #include <conio.h> #include <windows.h> #include <direct.h> #include <s...
热门
c++操作mysql数据库
MySql数据库下载地址:https://dev.mysql.com/get/Downloads/MySQL-5.5/mysql-5.5.62-win32.zip环境配置添加MySql数据库的.h头文件和.lib静态库文件头文件所在位置:mysql-5.5.62-win32\include\静态库所在位置:mysql-5.5.62-win32\lib将mys...
热门
codeblocks添加文件头和静态库
一般在开发程序的过程中需要添加一些类库的文件头和静态库,本文就是来教大家如何添加头文件和静态库以code::blocks 17.12为例添加头文件项目>构建选项> 搜索目录>编译器>添加 在这里添加.h头文件所在目录添加静态库项目>构建选项> 连接器设置>链接库 添加 在这里添加.lib静...
热门