1 function guid() { 2 return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { 3 var r = Math.random() * 16 | 0, 4 v = c == 'x' ? ...
分类:
Web程序 时间:
2020-09-24 21:23:44
阅读次数:
43
一、JavaScript: 1. setTimeOut准时吗? 不一定准时,他只是把时间到了放进时间队列里 2. JS快速打乱一个数组 先上代码 sort + Math.random() var arr=[1,2,3,4,,5,6,7,8,9,10]; arr.sort(function(){ re ...
分类:
其他好文 时间:
2020-09-24 21:21:04
阅读次数:
39
引用数据类型 1.Java定义好的,如Scanner类,Random类等 2.自己创建的类 定义类的格式 public class 类名(首字母大写){ 数据类型 属性1; …… 数据类型 属性n; } 使用格式 导包:放在同一个文件夹下可以避免导包 创建:类名 变量名=new 类名(); 调用:变 ...
分类:
编程语言 时间:
2020-09-24 00:10:23
阅读次数:
41
1 #可以多运行几次,看看结果是不是随机生成的~ 2 3 import random 4 #调用random模块,与 5 a = random.randint(1,100) 6 # 随机生成1-100范围内(含1和100)的一个整数,并赋值给变量a 7 print(a) ...
分类:
编程语言 时间:
2020-09-24 00:05:09
阅读次数:
57
如下代码 const request = function(){ let num = Math.round(Math.random()*100)/100; console.log(num); setTimeout(function(){ if(num < 0.5){ return('1234567' ...
分类:
其他好文 时间:
2020-09-23 23:23:45
阅读次数:
46
因为冒号 (:) 在具有内插表达式的项中具有特殊含义,为了在表达式中使用条件运算符,请将表达式放在括号内,如下例所示: var rand = new Random(); for (int i = 0; i < 7; i++) { Console.WriteLine($"Coin flip: {(ra ...
分类:
其他好文 时间:
2020-09-23 23:21:21
阅读次数:
40
问题描述:判断用户是否窃漏电 问题解决:二分类问题 缺失值:拉格朗日插值法进行填充 使用的特征:电量趋势下降指标、线损指标、警告类指标 这里使用的数据来<python数据分析与实战第六章> 数据: 代码实现: 1、加载数据 import pandas as pd from random import ...
分类:
其他好文 时间:
2020-09-21 11:52:51
阅读次数:
42
Lua5.3 random函数的interval is empty错误 问题记录:math.random函数使用中报错 “interval is empty” 解决方法:math.random的两个参数中,第一个参数 ≤ 第二个参数。 luaL_argcheck(L, low <= up, 1, " ...
分类:
其他好文 时间:
2020-09-18 17:21:14
阅读次数:
58
/** * Calculate the size of the mempool header. * * @param mp * Pointer to the memory pool. * @param cs * Size of the per-lcore cache. */ #define MEMP ...
分类:
其他好文 时间:
2020-09-18 01:52:20
阅读次数:
30
前端目标代码: <ul v-loading="loading"> <li v-for="(item, index) in options" :key="index" :style="{ cursor: item.tic_parent_id != 0 ? 'pointer' : '' }" :clas ...
分类:
其他好文 时间:
2020-09-18 01:50:58
阅读次数:
24