import axios from 'axios'; import iView from 'iview'; const baseApiObj = { production: 'https://imzt.bndxqc.com/api', experience: 'https://imztty.bndx ...
分类:
Web程序 时间:
2021-07-05 16:58:57
阅读次数:
0
#include <stdio.h> #include <string.h> int * getarr(int * ipt); int main() { int a = 99; char * ch ; int *p = getarr(&a); //gets(ch); printf("%d\n", * ...
分类:
其他好文 时间:
2021-07-05 16:56:01
阅读次数:
0
changeTime (val) { const pattern = /^(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})$/ try { return val.replace(pattern, '$1-$2-$3 $4:$5:$6') } catch (erro ...
分类:
其他好文 时间:
2021-07-05 16:39:44
阅读次数:
0
import pymysql,xlwt def export_excel(table_name): host,user,passwd,db='192.168.1.152','root','myjcyf','us_sys' coon=pymysql.connect(host=host,user=use ...
分类:
其他好文 时间:
2021-07-01 17:27:29
阅读次数:
0
方法1:通过eval var a = 5; for (var i = 1; i <= a; i++) { eval("var a" + i + "=" + i); } alert(a1); 注意 必须是 var 声明 let 和 const 会报错 方法2: 连续声明 var a,b,c,d,e,f ...
分类:
Web程序 时间:
2021-07-01 17:24:23
阅读次数:
0
import lombok.*; /** * @author: Small sunshine * @Description: * @date: 2021/6/30 8:05 下午 */ public class SortTree { public static void main(String[] ...
分类:
其他好文 时间:
2021-07-01 17:04:50
阅读次数:
0
类型转换 由于Java是强制类型语言,所以要进行有些运算的时候,需要用到类型转换。 由低到高: byte,short,char—> int —> long—> float —> double 不能对boolean类型进行类型转换。 不能把对象类型转换成不相关类的对象。 在把容量大的类型转换为容量小的 ...
分类:
编程语言 时间:
2021-07-01 17:03:47
阅读次数:
0
什么时候使用const? 当我们修饰的标识符不希望被别人更改的话(再次赋值),那么我们就可以使用const来修饰属性保证数据的安全性,但是建议: ES6 开发时。优先用const,要改变的变量用let即可。 C/C++ 是用来定义常量的. 使用特点: 1. 当定义的时候 记得一定要去赋值,而且只能赋 ...
分类:
其他好文 时间:
2021-07-01 16:55:15
阅读次数:
0
changeData (data) { const arr = [] if (data.length !== 0) { data.forEach(item => { const obj = {} obj.id = item.path obj.label = item.name if (item.ch ...
分类:
其他好文 时间:
2021-07-01 16:42:14
阅读次数:
0
1、字符串转十六进制 代码实现: void StrToHex(char *pbDest, char *pbSrc, int nLen){ char h1,h2; char s1,s2; int i; for (i=0; i<nLen/2; i++) { h1 = pbSrc[2*i]; h2 = p ...
分类:
编程语言 时间:
2021-07-01 16:28:54
阅读次数:
0