给python程序传递参数 运行python脚本时有时需要执行实传递参数 在linux下: [root@Test ~]# cat /opt/python.py #!/usr/local/bin/python # -*- coding:utf-8 -*- import sys print(sys.ar ...
分类:
编程语言 时间:
2019-12-02 13:31:54
阅读次数:
96
目标 1、springboot之jpa支持 2、Springboot+bootstrap界面版之增删改查及图片上传 spring boot之jpa支持 导入pom依赖 1 <dependency> 2 <groupId>org.springframework.boot</groupId> 3 <ar ...
分类:
编程语言 时间:
2019-12-01 13:23:49
阅读次数:
78
题目:简单推动 题意:你被给予两个相同长度为n的数组a[1...n]和b[1...n] 目的是进行一个推入操作,你会选择l,r,k三个数字满足1 0, 你会添加k到al,al + 1,...,ar的每个数字上 例如:a = [3, 7, 1, 4, 1, 2],选择l = 3, r = 5, k = ...
分类:
其他好文 时间:
2019-11-30 13:32:44
阅读次数:
84
https://www.cnblogs.com/FZfangzheng/p/7588944.html https://www.cnblogs.com/simuhunluo/p/7704765.html make报错,缺少gcc https://blog.csdn.net/qq_31306973/ar ...
分类:
编程语言 时间:
2019-11-29 12:33:27
阅读次数:
68
# 先看代码 public class ErasedTypeEquivalence { public static void main(String[] args) { Class c1 = new ArrayList<String>().getClass() ; Class c2 = new Ar ...
分类:
编程语言 时间:
2019-11-26 21:09:09
阅读次数:
85
1、路由器的基本指令(注意,HuaWei的eNSP软件支持tab键的指令自动补全功能!AR的设置很重要): 1 <HuaWei>sys #进入到管理员配置模式,按下Ctrl+Z就退出管理员模式(也可以输入q然后Enter即可退出),进入普通用户模式 2 3 [HuaWei]sysname AR1 # ...
分类:
其他好文 时间:
2019-11-26 19:34:44
阅读次数:
142
1、thymeleaf模板 2.Freemarker模板 Thymeleaf模板 首先导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</ar ...
分类:
编程语言 时间:
2019-11-26 17:38:40
阅读次数:
70
composer dump-autoload php artisan cache:clear 清理视图缓存 php atisan view:clear 清除运行缓存 php artisan cache:clear 清除配置 php artisan config:clear 清除路由缓存 php ar ...
分类:
其他好文 时间:
2019-11-26 17:31:22
阅读次数:
101
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6621 题意: 对于每个查询,都会给您一个间隔[L,R]和两个数字p和K。您的目标是找到p和aL,aL+1,…,aR之间的第K个最近距离。 p和ai之间的距离等于| p-ai |。 思路:直接建树,二分绝 ...
分类:
其他好文 时间:
2019-11-25 23:46:39
阅读次数:
79
字符串转数组 let str = "123,456,100,156"; let arr = str.split(","); 此时的arr已经是一个数组。 数组转字符串 arr = [1,2,3]; str = arr.join(); console.log(str);//1,2,3 str = ar ...
分类:
编程语言 时间:
2019-11-24 17:57:26
阅读次数:
82