自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (2)
  • 收藏
  • 关注

原创 自定义string

#include "MyString.h" //自定义string MyString::MyString() { this->len = 0; this->str = NULL; } MyString::MyString(int len) { if (len == 0) { this->len = 0; this->str = new char[len + 1]; strc

2017-06-20 21:50:53 254

原创 智能指针

#define _CRT_SECURE_NO_WARNINGS #include #include using namespace std; class A { public: A(int a) { cout << "A(int)" << endl; this->a = a; } void func(){ cout << "a = " << a << endl;

2017-06-18 00:05:57 204

原创 c++操作符重载与友元函数 单目 双目 左移右移 ==号操作符重载 自定义数组

#define _CRT_SECURE_NO_WARNINGS #include using namespace std; class Complex { public: Complex(int a, int b) { this->a = a; this->b = b; } void printC() { cout a b << "i" << ")"<<endl

2017-06-13 22:49:12 333

原创 一些app源码

知乎专栏App  https://github.com/bxbxbai/ZhuanLan WeChat高仿微信 项目地址: https://github.com/motianhuo/wechat GankMeizhi https://github.com/xingrz/GankMeizhi Meizhi https://github.com/drakeet/M

2017-06-01 16:53:34 4198

SurfaceFlinger 视频教程 显示系统,内部机制,Vsync机制,HDMI系统

SurfaceFlinger 视频教程 显示系统,内部机制,Vsync机制,HDMI系统

2021-01-22

gif 加载方式GifView

gif 加载方式GifViewgif

2015-12-03

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除