上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 67 下一页
摘要: 1、switch(运算结果) 或 case 值 的数据类型 a、基本数据类型:byte/short/char/int b、引用数据类型:String、枚举 2、注意break 当case符合的情况下,执行该case的语句,若当前case没有break,则继续执行,知道遇到break 阅读全文
posted @ 2020-07-14 21:53 市丸银 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1、bytes short char 加法运算 先->为 int 再 运算 阅读全文
posted @ 2020-07-13 21:47 市丸银 阅读(129) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/xienan_ds_zj/article/details/86738316 阅读全文
posted @ 2020-07-11 16:54 市丸银 阅读(533) 评论(0) 推荐(0) 编辑
摘要: 1、java端 package com.bd; import py4j.GatewayServer; import com.arcsoft.face.FaceFeature; public class FaceMain { public Double getFeature(String path1, 阅读全文
posted @ 2020-07-11 14:24 市丸银 阅读(228) 评论(0) 推荐(0) 编辑
摘要: # 删除远程 git rm -r --cached rbac/utils/config.py # 删除本地 rm -rf rbac/utils/config.py git commit -m "文件" 阅读全文
posted @ 2020-07-10 14:11 市丸银 阅读(666) 评论(0) 推荐(0) 编辑
摘要: https://www.icode9.com/content-4-223704.html 阅读全文
posted @ 2020-07-07 13:50 市丸银 阅读(103) 评论(0) 推荐(0) 编辑
摘要: python manage.py makemigrations <appname> python manage.py migrate <appname> 阅读全文
posted @ 2020-07-06 18:53 市丸银 阅读(854) 评论(0) 推荐(0) 编辑
摘要: def get_client_ip(request): x_forwarded_for = request.META.get('HTTP_X_FORWARDED_FOR') if x_forwarded_for: ip = x_forwarded_for.split(',')[0] # 所以这里是真 阅读全文
posted @ 2020-07-06 16:48 市丸银 阅读(790) 评论(0) 推荐(0) 编辑
摘要: import uuid def get_mac_address(): node = uuid.getnode() mac = uuid.UUID(int=node).hex[-12:] print(mac) return mac get_mac_address() 阅读全文
posted @ 2020-07-06 15:47 市丸银 阅读(825) 评论(0) 推荐(0) 编辑
摘要: 安装 https://liqiang.io/post/install-snap-in-centos-cd98d073 启动 https://www.jianshu.com/p/42739a0182ff 安装本地包 https://blog.csdn.net/qq_25540095/article/d 阅读全文
posted @ 2020-07-03 11:08 市丸银 阅读(749) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 67 下一页