打开设置文件 更换settings.json文件 复制下面代码,保存到settings.json文件中 {"vetur.format.defaultFormatter.html": "js-beautify-html", "emmet.includeLanguages": { "wxml": "ht ...
分类:
其他好文 时间:
2021-06-10 17:54:00
阅读次数:
0
类型转换 public class Demo02 { public static void main(String[] args) { //强制转换 (类型)变量名 高-->低 int i = 128; byte b = (byte) i;//内存溢出 System.out.println(i); ...
分类:
其他好文 时间:
2021-06-10 17:53:43
阅读次数:
0
对1~1000求阶乘 上面的x y可以自由换成其他表达式,如 x+y、x y、x 2+y、2 x+5 y 等等 range(1,1001)表示生成1到1000的连续整数列表(List)。 reduce(functionA,iterableB),functionA为需要两个变量的函数,并返回一个值。i ...
分类:
编程语言 时间:
2021-06-10 17:52:09
阅读次数:
0
?这是啥算法题。。 逐个判断写个循环即可 class Solution: def fizzBuzz(self, n: int) -> List[str]: result = [] for i in range(1,n+1): if i % 3 == 0 and i % 5 == 0 : result ...
分类:
编程语言 时间:
2021-06-10 17:39:18
阅读次数:
0
git clone -b 远程分支名 仓库地址 从远程指定分支克隆代码git branch 查看本地分支 git checkout -b cap 创建本地cap分支 并切换 git add * git commit -m"测试提交" git push origin cap:cap 将本地项目提交到远 ...
分类:
其他好文 时间:
2021-06-09 15:23:31
阅读次数:
0
void llvtype(std::string_view k, Value* v) { std::cout << std::format("{}:{}:{}", k, (int)v->getType()->getTypeID(), v->getName().str() ) << "\n"; } . ...
分类:
其他好文 时间:
2021-06-08 23:38:58
阅读次数:
0
Dapr at 20,000 feet 俯瞰Dapr In chapter 1, we discussed the appeal of distributed microservice applications. But, we also pointed out that they dramatic ...
分类:
Web程序 时间:
2021-06-08 23:37:22
阅读次数:
0
这是一个VUEX的修改值的流程,先通过组键使用——请求后台提交到Mutatlons然后通过state修改 首先要通过命令下载vuex,或通过新建目录时就一起安装一个。 示例: 在store,index下新建一个值为dnum:0 然后在需要使用修改dnum值的页面引用 home页面 $store 是在 ...
分类:
其他好文 时间:
2021-06-08 23:26:57
阅读次数:
0
import multiprocessing, time, os# def pro(name):# print('hello', name, time.ctime())## if __name__ == '__main__':# l = []# for t in range(4):# t = mul ...
分类:
系统相关 时间:
2021-06-08 23:20:39
阅读次数:
0
if (!-d $request_filename){ set $rule_0 1$rule_0; } if (!-f $request_filename){ set $rule_0 2$rule_0; } if ($rule_0 = "21"){ rewrite ^/(.*)$ /index.ph ...
分类:
其他好文 时间:
2021-06-08 22:57:09
阅读次数:
0