- 博客(8)
- 资源 (2)
- 收藏
- 关注
原创 g++使用std::thread编译错误问题
运行时,报如下错误:terminate called after throwing an instance of 'std::system_error' what(): Enable multithreading to use std::thread: Operation not permitted已放弃 (核心已转储)解决办法:g++ 编译时添加链接 -pthread ; 而链接-lpthr...
2018-03-13 11:11:36 2793
原创 c++ 虚函数
C++中的虚函数的作用主要是实现了多态的机制,虚函数(Virtual Function)是通过一张虚函数表(Virtual Table)来实现的,关于虚函数表的实现机制,可以参考这篇文章:C++ 虚函数经典深入解析。以下主要介绍下虚函数使用与非虚函数的区别。1、非虚函数的调用#include <stdio.h>#include <stdlib.h>#incl...
2018-01-08 19:59:03 407
原创 c++ 指针及指针数组
一、指针数值和数组指针首先解释下指针数组及数组指针区别:指针数组:array of pointers,即用于存储指针的数组,也就是数组元素都是指针数组指针:a pointer to an array,即指向数组的指针int s[6] = {1,2,3,4,5,6};int *p1 = s;//p1即为数组指针,其指向数组s的首地址int *p2[2] = {&s[0...
2017-09-16 01:19:38 5800
WPS提示系统缺失的字体包
2018-06-22
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人