码迷,mamicode.com
首页 >  
搜索关键字:type casting    ( 52004个结果
mysql source输出记录日志
mysql开启命令行日志(可以记录source等的日志) mysql> tee hello.log mysql>select now() ; mysql>exit; //退出mysql 客户端 查看 hello.log 文件内容如下: mysql> select now(); 用法如下: Step ...
分类:数据库   时间:2021-04-19 15:24:58    阅读次数:0
excel导出前端vue
export_excel(){ this.axios.get('downExcelView/',{responseType:'blob'}).then(res=>{ var blob = new Blob([res.data], {type: 'application/vnd.openxmlform ...
分类:其他好文   时间:2021-04-19 15:08:07    阅读次数:0
套接字编程
##Socket函数 #include <sys/types.h> #include <sys/socket.h> int socket(int domain, int type, int protocol); domain 协议族: AF_OCAL, AF_INT, AF_INET7 type S ...
分类:其他好文   时间:2021-04-19 15:04:18    阅读次数:0
java的数据类型 以及字节
强类型语言:要求变量的使用要严格符合规定,所有变量都必须先定义后才能使用★ java的数据类型分为两大类: 基本类型(primitive type) 应用类型(reference type) public class Demo01 { public static void main(String[] ...
分类:编程语言   时间:2021-04-16 12:14:53    阅读次数:0
达梦数据库运维常用视图
一、数据字典相关 这个数据字典表可以查询数据库中所有的对象,通过where中的type列和subtype$可以做过滤,比如通过以下sql可以查询所有用户自创建的表: select * from SYS.SYSOBJECTS where subtype$ = 'UTAB';(SELECT * FROM ...
分类:数据库   时间:2021-04-16 12:14:18    阅读次数:0
vue双向绑定(模型变化,视图变化,反之亦然)
<body> <div id="app"> <input type="text" v-model="num"/> <h1>{{name}},你真的强,有{{num}}个人为他点赞。</h1> </div> <script src="./node_modules/vue/dist/vue.js"></ ...
分类:其他好文   时间:2021-04-16 12:11:07    阅读次数:0
[ABC135D] Digits Parade
题解:又是dp想不出来的。\(dp_{i, j}\) 代表了,第 \(i\) 位时(从左到右),余数为 \(j\) 的数量。然后发现,状态转移的时候,如果 \(s_i = ?\) 则 \(dp_{i,(j * 10 + k) \% 13} =\sum dp_{i-1, (j * 10 + k) \% ...
分类:其他好文   时间:2021-04-16 12:05:43    阅读次数:0
读取地址返回的json,修改后上传json文件
// 上传首页数据设置、主题js文件export function uplaodTheme(data, fileName) { var dataString = JSON.stringify(data); var blob = new Blob([dataString], {type: "text/ ...
分类:Web程序   时间:2021-04-16 11:57:04    阅读次数:0
C 柔性数组
什么是柔性别数组 结构中的最后一个元素允许是未知大小的数组,这就叫做柔性数组成员 例如 typedef struct st_type { int i; int a[0]//柔性数组成员可以调整数组大小 }type_a; 使用方法 struct S { int n; int arr[]; }; int ...
分类:编程语言   时间:2021-04-16 11:50:27    阅读次数:0
mapper(StudentDao)
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <m ...
分类:移动开发   时间:2021-04-16 11:40:46    阅读次数:0
52004条   上一页 1 ... 36 37 38 39 40 ... 5201 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!