//计划长铸坯块数信息添加 bcls_ret->Tables[0].Columns.Add(DT_DECIMAL,"PLAN_LSLAB_NUM"); //Log::Trace("", __FUNCTION__, "count=[{0}]", bcls_ret->Tables[0].Rows.get ...
分类:
数据库 时间:
2021-03-03 12:11:25
阅读次数:
0
使用正则将手机号中间四位转换为 * 号: let mobile = "131 0000 8080" function convertMobile(mobile){ const mobileReg = /(\d{3})(\d{4})(\d{4})/ig; let mobileCalc = mobile ...
分类:
移动开发 时间:
2021-03-03 12:03:01
阅读次数:
0
1.执行npm run fix-memory-limit 2.再重新启动发现报错"node --max-old-space-size=10048"' 不是内部或外部命令,也不是可运行的程序 3.找到 在项目中 node_modules.bin 下的 webpack.cmd 和 webpack-dev ...
分类:
其他好文 时间:
2021-03-02 12:41:28
阅读次数:
0
Regex.Replace("18888888888", "(\\d{3})\\d{4}(\\d{4})", "$1****$2"); ...
分类:
移动开发 时间:
2021-03-02 12:36:37
阅读次数:
0
关于qt 资源处理。 这个是qt处理资源的方式,用VS2012+qtaddin 生成的项目会默认带资源,但是前期你没有添加资源的话,用 arm-hismall-linux-g++编译的时候就会出错。 所以如果还没有添加资源的话就可以将qrc_xxx.cpp的里面内容先注视掉,否则会报错,错误内容如下 ...
分类:
系统相关 时间:
2021-03-02 12:01:48
阅读次数:
0
#export PATH=/opt/Qt5.9.0/5.9/gcc_64/bin:$PATH #qmake -project QT+=widgets #qmake 所以如果是想要把vs的Qt项目移植到linux下,最好不要通过vs生成pro文件。只有当拷贝到linux下时才通过qmake -proj ...
分类:
系统相关 时间:
2021-03-02 11:57:19
阅读次数:
0
{ //http://www.360doc.com/content/14/0413/16/15099545_368549362.shtml } GCC/Clang生成和链接静态库/动态库 { 1 2 3 4 5 //add.cpp int add(int a, int b) { return a + ...
分类:
编程语言 时间:
2021-03-01 14:16:36
阅读次数:
0
地址 https://leetcode-cn.com/problems/string-to-url-lcci/solution/ URL化。编写一种方法,将字符串中的空格全部替换为%20。假定该字符串尾部有足够的空间存放新增字符,并且知道字符串的“真实”长度。(注:用Java实现的话,请使用字符数组 ...
分类:
Web程序 时间:
2021-03-01 13:58:11
阅读次数:
0
typedef type newname; // 为已有的类型取一个新名字 // 枚举类型 enum color {red, green=5, yellow}; // color: 枚举名 // red, green, yellow: 标识符 // 默认,第一个标识符的值为0,第二个标识符的值为1, ...
分类:
编程语言 时间:
2021-03-01 13:50:41
阅读次数:
0
概念 Deformation 形变 and deformation gradients 形变梯度 elastic 弹性 Strain and stress Hyperelastic material model 超弹性模型 线性有限元 elastic 弹性的 viscoelastic 粘性的 ela ...
分类:
其他好文 时间:
2021-03-01 13:47:40
阅读次数:
0