摘要:
转自:https://blog.shipengx.com/archives/4094be86.html,讲的非常全面 1.std::shared_ptr::get element_type* get() const noexcept; 获取指针,存储的指针指向 shared_ptr 对象解引用的对象 阅读全文
摘要:
转自:https://blog.csdn.net/shift_wwx/article/details/78742459 1.命名空间 using namespace std;//最常见的用法 2.在子类中引入基类的成员 当private继承时,可以通过using 基类:变量/函数名,让子类访问。这种 阅读全文
摘要:
转自:https://juejin.cn/post/7043596855829069861 1.更新 对表做多行更新的时候通常会遇到以下两种情况: 单语句批量更新(update a=a+1 where pk > 500) 多语句批量更新(update a=1 where pk=1;update a= 阅读全文
摘要:
转自:https://www.cnblogs.com/myseries/p/11191134.html 1.批量insert 1.1 一条sql 将单条insert改为批量insert,其实个人认为改为replace into更好,批量insert时,如果其中一条主键重复了,那么就会报错后面的ins 阅读全文