摘要:
1、switch(运算结果) 或 case 值 的数据类型 a、基本数据类型:byte/short/char/int b、引用数据类型:String、枚举 2、注意break 当case符合的情况下,执行该case的语句,若当前case没有break,则继续执行,知道遇到break 阅读全文
摘要:
1、bytes short char 加法运算 先->为 int 再 运算 阅读全文
摘要:
https://blog.csdn.net/xienan_ds_zj/article/details/86738316 阅读全文
摘要:
1、java端 package com.bd; import py4j.GatewayServer; import com.arcsoft.face.FaceFeature; public class FaceMain { public Double getFeature(String path1, 阅读全文
摘要:
# 删除远程 git rm -r --cached rbac/utils/config.py # 删除本地 rm -rf rbac/utils/config.py git commit -m "文件" 阅读全文
摘要:
https://www.icode9.com/content-4-223704.html 阅读全文
摘要:
python manage.py makemigrations <appname> python manage.py migrate <appname> 阅读全文
摘要:
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] # 所以这里是真 阅读全文
摘要:
import uuid def get_mac_address(): node = uuid.getnode() mac = uuid.UUID(int=node).hex[-12:] print(mac) return mac get_mac_address() 阅读全文
摘要:
安装 https://liqiang.io/post/install-snap-in-centos-cd98d073 启动 https://www.jianshu.com/p/42739a0182ff 安装本地包 https://blog.csdn.net/qq_25540095/article/d 阅读全文