查看如下代码: String mac_no_ff = ""; for (int i = 0; i < 6; i++) { mac += Integer.toHexString(card[i] & 0xff).toUpperCase(); mac_no_ff += Integer.toHexStrin ...
分类:
其他好文 时间:
2021-01-28 12:25:52
阅读次数:
0
https://blog.csdn.net/sinat_27746419/article/details/73604520 1.SD卡:SD卡是(secure digital memory card)安全数码卡,是一种基于半导体快闪记忆器的新一代记忆设备,常用于电脑,相机等大器材上。 2.TF卡是( ...
分类:
其他好文 时间:
2021-01-26 12:38:08
阅读次数:
0
joyieldInc代理 下载编译好的文件 git地址: https://github.com/joyieldInc/predixy 编译文件地址: https://github.com/joyieldInc/predixy/releases/download/1.0.5/predixy-1.0.5 ...
分类:
其他好文 时间:
2021-01-25 11:21:07
阅读次数:
0
@Resource和@Autowired注解都是用来实现依赖注入的。只是@AutoWried按by type自动注入,而@Resource默认按byName自动注入。 @Resource有两个重要属性,分别是name和type spring将name属性解析为bean的名字,而type属性则被解析为 ...
分类:
编程语言 时间:
2021-01-21 10:28:22
阅读次数:
0
直接来,1个脚本 using System.Collections; using System.Collections.Generic; using System.Diagnostics; using UnityEditor; using Debug = UnityEngine.Debug; pub ...
分类:
编程语言 时间:
2021-01-05 11:22:10
阅读次数:
0
Given an input string (s) and a pattern (p), implement wildcard pattern matching with support for '?' and '*' where: '?' Matches any single character. ...
分类:
其他好文 时间:
2020-12-29 11:12:41
阅读次数:
0
地址 https://leetcode-cn.com/problems/wildcard-matching/ 给定一个字符串 (s) 和一个字符模式 (p) ,实现一个支持 '?' 和 '*' 的通配符匹配。 '?' 可以匹配任何单个字符。 '*' 可以匹配任意字符串(包括空字符串)。 两个字符串完 ...
分类:
其他好文 时间:
2020-12-22 12:50:42
阅读次数:
0
// 过滤权限filterPremission(list){ var _search = this.searchPremissionVal; if (_search) { //不区分大小写处理 var reg = new RegExp(_search, 'ig') //es6 filter过滤匹配, ...
分类:
其他好文 时间:
2020-12-22 12:35:02
阅读次数:
0
在二维码卡包中,点击某张卡,展示二维码的图片,这张二维码打开的时候,内层的点击事件还会生效,防止误点击,所以在这时要禁止内层的点击事件。 一开始想到的是事件修饰符,试过之后并不能实现,就用js实现了,图片如下 html: 二维码卡包 <div @click="openQrcode(item.card ...
分类:
其他好文 时间:
2020-12-21 11:32:45
阅读次数:
0
原文链接:https://card.weibo.com/article/m/show/id/2309404494800391897318?_wb_client_=1&object_id=1022%3A2309404494800391897318&extparam=lmid--449480039449 ...
分类:
其他好文 时间:
2020-12-17 12:52:02
阅读次数:
2