码迷,mamicode.com
首页 >  
搜索关键字:card    ( 1723个结果
byte转换为十六进制时,Integer.toHexString需要&FF的原因
查看如下代码: 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
SD,TF,MMC,EMMC
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
redis集群理论与实战(二)
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
【spring bean】@Resource注解的自动注入策略 , 以 项目中注入多个线程池的Bean为例 附加自定义SpringBeanSupport
@Resource和@Autowired注解都是用来实现依赖注入的。只是@AutoWried按by type自动注入,而@Resource默认按byName自动注入。 @Resource有两个重要属性,分别是name和type spring将name属性解析为bean的名字,而type属性则被解析为 ...
分类:编程语言   时间:2021-01-21 10:28:22    阅读次数:0
Unity编辑器调用外部exe程序
直接来,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
44. 通配符匹配 Wildcard Matching
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
LeetCode 44. 通配符匹配 dp
地址 https://leetcode-cn.com/problems/wildcard-matching/ 给定一个字符串 (s) 和一个字符模式 (p) ,实现一个支持 '?' 和 '*' 的通配符匹配。 '?' 可以匹配任何单个字符。 '*' 可以匹配任意字符串(包括空字符串)。 两个字符串完 ...
分类:其他好文   时间:2020-12-22 12:50:42    阅读次数:0
input 检索关键字列表
// 过滤权限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
1723条   上一页 1 2 3 4 5 ... 173 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!