码迷,mamicode.com
首页 >  
搜索关键字:syntax    ( 2205个结果
简单好用的C++ json库——JSON for Modern C++
github传送门为:https://nlohmann.github.io/json/ 简介 首先这个库不是奔着性能去的,设计者考虑的是:直观的语法(Intuitive syntax)、微小的整合(Trivial integration)、认真的测试(Serious testing) 至于内存效率和 ...
分类:编程语言   时间:2020-04-27 17:18:39    阅读次数:77
深入浅析Vue中mixin和extend的区别和使用场景
Vue中有两个较为高级的静态方法mixin和extend,接下来我们来讨论下关于他们各自的原理和使用场景。 Mixin: 原理: 先来看看官网的介绍: 参数:{Object} mixin 用法: 混入也可以进行全局注册。使用时格外小心!一旦使用全局混入,它将影响每一个之后创建的 Vue 实例。使用恰 ...
分类:其他好文   时间:2020-04-27 15:20:00    阅读次数:61
《Python》re模块补充、异常处理
一、re模块 1、match方法 import re # match 验证用户输入的内容 ret = re.match('\d+', 'hhoi2342ho12ioh11') print(ret) # None ret = re.match('\d+', '342khjlh324jbk234') p ...
分类:编程语言   时间:2020-04-26 17:02:53    阅读次数:59
mariadb change password
SET PASSWORD MariaDB Knowledge Base https://mariadb.com/kb/en/set password/ syntax MariaDB: Change a user password https://www.techonthenet.com/mariad ...
分类:数据库   时间:2020-04-26 16:57:13    阅读次数:69
第6章 移动语义和enable_if:6.5 使用Concepts简化enable_if<>表达式
6.5 Using Concepts to Simplify enable_if<> Expressions 6.5 使用Concepts简化enable_if<>表达式 Even when using alias templates, the enable_if syntax is pretty ...
分类:移动开发   时间:2020-04-26 01:09:34    阅读次数:110
nginx+Tomcat负载均衡
#!/bin/bash rpm -ivh jdk-8u131-linux-x64_.rpm if [ `grep JAVA_HOME /etc/profile | wc -l` -ne 4 ];then echo -e 'export JAVA_HOME=/usr/java/jdk1.8.0_131 ...
分类:其他好文   时间:2020-04-22 16:39:41    阅读次数:66
centos7系统出现“-bash:syntax error near unexpected token `('”错误的解决方法
最近准备新建了一个网站(www.appjzw.com),于是将我打包好的压缩文件上传到centos7系统上面,然后使用tar -xzvf命令的时候出现错误,大概的错误提示如下: -bash:syntax error near unexpected token `(' 然后网上找了相关资料,好像cen ...
分类:其他好文   时间:2020-04-21 18:14:01    阅读次数:403
CSS相关
CSS相关 2019/01/15 Chenxin 参考: http://www.runoob.com/css/css syntax.html 通过使用 CSS 我们可以大大提升网页开发的工作效率!使用 CSS 同时控制多重网页的样式和布局。 什么是 CSS?CSS 指层叠样式表 (Cascading ...
分类:Web程序   时间:2020-04-20 15:55:09    阅读次数:65
如何优雅的在 Microsoft word中插入代码
摘自:http://www.planetb.ca/syntax-highlight-word/ 一、工具 方法1.打开这个网页PlanetB; 方法2.或者谷歌搜索syntax highlight code in word documents,检索结果的第一个。如下图: PS. 方法1和2打开的为同 ...
分类:其他好文   时间:2020-04-18 11:52:56    阅读次数:67
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near
create table fina_indicator(ts_code varchar(20) comment 'TS代码',ann_date date comment '公告日期',end_date date comment '报告期', ..... 报错信息:ERROR 1064 (42000) ...
分类:数据库   时间:2020-04-17 15:58:46    阅读次数:84
2205条   上一页 1 ... 13 14 15 16 17 ... 221 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!