上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 26 下一页
摘要: 对象的动态内存分配 Spread{ int ** arr = new int*[10]; for(int i=0;i<10;i++) { arr[i] = new int[10]; } // 析构 for(auto i=0;i<10;i++) { delete[] arr[i]; } delete[ 阅读全文
posted @ 2020-07-04 17:50 fight139 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 动态字符串 C++中定义一些来自c语言的字符串函数,在头文件中。通常,这些函数不直接操作内存分配。 strlen(str)返回字符串长度,不包括\0 使用安全C库: strlen_s 也在 中 C++的string类 #include <string> using namespace std; co 阅读全文
posted @ 2020-07-04 17:11 fight139 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 枚举 enum CarType { CarTypeLit, CarTypeMiddle, CarTypeLitBig }; CarType type = CarTypeMiddle; cout << type << endl; // 强类型枚举 强类型枚举 enum class CarType2 { 阅读全文
posted @ 2020-07-04 15:19 fight139 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 下载 场景:用户点击按钮,在后台生成文件,并下载到客户端 导出Excel 客户端程序 var link = document.createElement('a'); link.setAttribute("download", ""); link.href = "${ctx}/reportExcel" 阅读全文
posted @ 2020-06-22 16:36 fight139 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 按照指定顺序排序 使用场景:需要查询捆号为10,23,9...的数据,查询结果也是按照输入的顺序排列 sql: select * from store where xh in (10,23,9) order by case xh when 10 then 1 when 23 then 2 when 阅读全文
posted @ 2020-06-16 19:45 fight139 阅读(243) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/1250855/202005/1250855-20200516111549186-767741097.png) ```css input[type=checkbox].my-checkbox { margin-right: 5px; cursor: pointer; font-size: 14px; width: 13px; 阅读全文
posted @ 2020-05-16 11:15 fight139 阅读(641) 评论(0) 推荐(0) 编辑
摘要: 一级缓存(SqlSession级别) MyBatis的一级缓存是SqlSession级别的缓存。在操作数据库时,需要构造SqlSession对象,在对象中又一个HashMap用于存储缓存数据。不同的SqlSession之间的缓存数据区域(HashMap)是互不影响的。 一级缓存的作用域是SqlSes 阅读全文
posted @ 2020-05-05 15:52 fight139 阅读(113) 评论(0) 推荐(0) 编辑
摘要: ```html``` 阅读全文
posted @ 2020-04-09 10:17 fight139 阅读(240) 评论(0) 推荐(0) 编辑
摘要: deepin "参考" 第一步:安装deepin wine环境 在 "此網站" 页面下載zip包(deepin wine ubuntu master.zip) 用unzip 命令解壓下載的文件解压到本地文件夹 unzip deepin wine ubuntu master.zip 进入deepin 阅读全文
posted @ 2020-03-24 16:36 fight139 阅读(338) 评论(0) 推荐(0) 编辑
摘要: sale materialflow materialflowitem storeout saleorder sale order item ictemp s_store_t D_taskcode_ L_ic_dbtemp rmis_user.m_steelmeasure_t 阅读全文
posted @ 2020-03-11 09:42 fight139 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 系统函数、系统调用 系统函数 open/close函数 函数原型 man 2 open 头文件 demo read/write函数 read参数 fd:文件描述符 buf:存放数据的缓冲区 count:缓冲区的大小 read返回值: success:读到的字节数 fail: 1,设置errno wr 阅读全文
posted @ 2020-02-16 16:13 fight139 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 配置远程Linux编译器 实现目标:1.将项目中的源码和target和Linux服务器同步。2.代码在服务器端运行 配置ToolChains setting Build,Execution,Deployment ToolChains 配置Deployment 更改环境后,需要重新加载CMake 阅读全文
posted @ 2020-02-15 15:20 fight139 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 使用场景 我们在做报表的时候,经常遇到这种情况:表格行数固定,用户输入的行数不确定,空白的地方需要用指定字符补齐,如: 如何用mysql实现? 阅读全文
posted @ 2020-02-11 18:19 fight139 阅读(299) 评论(0) 推荐(0) 编辑
摘要: makefile工作原则 原则一 若想生成目标,检查规则中的依赖条件是否存在,如不存在,则去寻找是否有规则去生成依赖文件。如: makefile 编译 原则二 命名: makefile Makefile 一个规则 一个例子 单文件 编辑makefile: 使用make编译 多文件 文件结构 make 阅读全文
posted @ 2020-02-09 16:42 fight139 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 使用gdb工具,必须在编译时加上 g选项 gcc g main.c o main 基础指令 列出源码 直接run,可以找出段错误的位置。 list 1 打印代码 【或者 l 1】 r run 【参数列表】 s step n next until p var 【查看变量】 ptype var 【查看变 阅读全文
posted @ 2020-02-09 15:57 fight139 阅读(170) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 26 下一页