- 博客(10)
- 问答 (1)
- 收藏
- 关注
原创 python
https://cloud.tencent.com/developer/news/328243 安装教程 https://www.runoob.com/python3/python3-install.html菜鸟教程 安装教程
2019-09-30 16:04:24
246
转载 socket笔记
https://blog.csdn.net/jiushimanya/article/details/82684525#commentBox 服务端: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19...
2019-09-10 11:23:38
361
转载 设计模式
单实例模式 https://www.cnblogs.com/codingmengmeng/p/5906583.html 1.造函数和析构函数为私有 2.instance为静态私有指针 3.GetInstance()为静态方法 单例模式下的线程同步问题 https://blog.csdn.net/qianfeng_dashuju/article/details/80063902 观察...
2019-08-05 11:51:34
229
转载 蓝牙规范
HeadsetPro-file(HSP)代表耳机功能,提供手机与耳机之间通信所需的基本功能。 HandProfile(HFP)则代表免提功能,HFP在HSP的基础上增加了某些扩展功能。 Advanced Audio Distribution Profile(A2DP),指的是 蓝牙音频传输模型协定。 HFP格式的蓝牙耳机支持手机功能比较完整,消费者可在耳机上操作手机设定...
2019-07-25 10:15:34
543
转载 多线程c++11
多线程+互斥锁mutex https://blog.csdn.net/ouyangfushu/article/details/80199140 基本互斥锁 mutex.lock() mutex.try_lock() https://blog.csdn.net/chengqiuming/article/details/89287883 多线程<thread> join和det...
2019-07-22 17:10:03
339
转载 C++模板
1.函数模板 template<typename T> void Swap(T *a, T *b){ T temp = *a; *a = *b; *b = temp; } typename 可换为class template <typename 类型参数1 , typename 类型参数2 , ...> 返回值类型 函数名(形参列表){ ...
2019-07-11 11:34:42
269
转载 C++虚析构函数
首先,对于虚析构函数,那就得说下构造函数和析构函数了。 构造函数:进行初始化成员变量的函数。 析构函数:在对象生命周期结束的时候,完成资源的回收和清理。 如果我们在设计一个类的时候,没有显示声明定义构造函数,析构函数,则编译器会自动生成。 虚析构函数:只有当一个类被定义为基类的时候,才会把析构函数写成虚析构函数。 如果我们不需要使用基类对派生类的对象操作时,我们也不必去定义虚...
2019-07-11 11:14:25
201
转载 C++学习笔记
1.成员变量命名m_** 3.构造函数:一定有一个空函数体的默认构造函数 4.用const修饰的成员变量,一定要用参数初始化表来初始化 class VLA{ private: const int m_len; int *m_arr; public: VLA(int len); }; //必须使用参数初始化表来初始化 m_len VLA::VLA(int len...
2019-07-10 18:02:57
221
转载 在eclipse中预览jsp页面
1.点击windows->preferences->general->editors->file assocaitions 2.在file type中找到jsp 3.在associated editors 中选中web page editor,点击default即可 4.在jsp页面右键选择open with ->web page editor 取消预览...
2019-03-29 21:32:14
6328
空空如也
这是哪里有问题?小白刚开始springmvc.求大神解答
2017-12-10
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅