C++
小刀刺大熊
这个作者很懒,什么都没留下…
展开
-
使用c++标准库函数
【代码】使用c++标准库函数。原创 2024-03-02 17:54:02 · 135 阅读 · 0 评论 -
vs2019,rand()函数
只使用的rand(),没有调用srand()进入rand()的汇编代码call 79F0FEA0 ;调用一个函数,返回一个地址,保存在eax中mov dword ptr [ebp-4],eax ;将eax的值保存在 栈 ebp - 4 的地方mov eax,dword ptr [ebp-4] ;这是废话吧imul ecx,dword ptr [eax+14h],343FDh;eax + 0x14 这里查看原创 2020-09-08 17:02:12 · 1320 阅读 · 0 评论 -
比较
less() 重载greater() 重载>plus() +minus() -multiplies() *divides() /modulus() %negate() -(取反)not_equal_to()原创 2017-09-13 17:19:52 · 215 阅读 · 0 评论 -
vector
int a[5] = {1,0,0,8,6}; vector test; //insert (4种方式) test.insert(test.begin(),123); //iterator (where , value) test.insert(test.end(),3,66); //iterator (where , count , value)原创 2017-06-24 10:17:31 · 186 阅读 · 0 评论 -
string substr()
string substr(int pos = 0,int n = npos) const;//返回pos开始的n个字符组成的字符串string s="12345678910"string temp = s.substr(0,8);返回从0开始8个字符注意:开始位置不能越界,npos可以原创 2017-04-06 16:25:19 · 1163 阅读 · 0 评论 -
stl sort
stl sort会概率造成core dumphttps://blog.csdn.net/stpeace/article/details/79682165转载 2019-03-06 10:25:59 · 275 阅读 · 0 评论 -
c++运算符优先级
优先级运算符结合性1::2++ --(后缀)2()2[]2.2−>3++ --(前缀)3+ -(正负号)3! ~3()3*3&3sizeof3new3delete4.*4->*5* / %6+ -7<< >>8< <= >...原创 2020-07-15 17:26:59 · 125 阅读 · 0 评论 -
c++ double转string
//double 精度 17位string DoubleToStr( double num){ ostringstream out; //设置精度 out.precision(17); out << num; return out.str();}原创 2020-02-25 17:18:00 · 1861 阅读 · 1 评论 -
c++读写文件
#include <fstream>#include <iostream>#include <vector>#include <string>#include <windows.h>#define FILEPAWD "./passwd.txt"#define SALEINFO "./saleinfo.txt"class ...原创 2020-02-19 14:35:04 · 142 阅读 · 0 评论 -
打印堆栈
#include&lt;execinfo.h&gt;#include&lt;stdio.h&gt;#include&lt;stdlib.h&gt;#include&lt;unistd.h&gt;VOID PrintBacktrace(VOID){#define BTSIZE 100int j, nptrs;void *buffer[100];ch转载 2019-01-19 14:14:10 · 720 阅读 · 0 评论 -
有符号与无符号
https://blog.csdn.net/band_of_brothers/article/details/2005179转载 2018-09-05 14:56:09 · 592 阅读 · 0 评论 -
不用new定义变长数组
//对不对不知道,运行好像没发现问题 版本 vs2012 gcc 4.4.7-17template<typename _Tst,INT nCount = 1024>class BJDArray{public: //gcc 4.4.7-17不支持 //typedef typename _Tst value_type; //typedef typenam...原创 2018-07-06 17:52:21 · 416 阅读 · 0 评论 -
c++11 尾随返回类型
auto fun(int a)->int (*)[]{}原创 2017-02-20 08:45:45 · 1389 阅读 · 0 评论