
c++
Sanjiye
这个作者很懒,什么都没留下…
展开
-
c++初始化列表的一些知识点
性能优化在刚接触c++时候就觉得c++很有意思,比如在c中用”=”赋值的一些语句可以使用”()”进行初始化,但是之前并没有十分理解初始化相比于赋值语句有什么优点,后来在学习了类之后,初始化列表的出现,让我对初始化有了更加深刻的理解。首先看代码#include<iostream> using namespace std;struct Test1 { Test1() //无参析构 {原创 2017-12-03 21:44:15 · 745 阅读 · 0 评论 -
c++中string类的基本实现
#pragma once #include<iostream> #include<string.h> using std::ostream; using std::istream;class my_string { private: char *data; int len; public: static const int npos = -1; //返回原创 2017-12-23 13:13:04 · 581 阅读 · 0 评论 -
LeetCode Add Two Numbers
题目描述You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and retur原创 2017-12-17 18:11:31 · 303 阅读 · 0 评论 -
Linux时间轮应用:关闭非活动连接
介绍 时间轮顾名思义,就是将不同时间的定时任务放在一个轮子上,既然是轮子,肯定是会转动的,每当指针转动到一个时间槽的时候我们会到这个时间槽中去执行到期的定时任务。...原创 2018-08-09 16:49:07 · 912 阅读 · 0 评论