码迷,mamicode.com
首页 >  
搜索关键字:st    ( 5888个结果
JAVA下划线、驼峰相互转换
/** * 下划线转驼峰 * @param str * @return */ public static String lineToHump(String str) { str = str.toLowerCase(); Matcher matcher = linePattern.matcher(st ...
分类:编程语言   时间:2020-11-26 15:22:03    阅读次数:11
通过 RS485 与读卡器通信
using NLog; using System; using System.IO.Ports; using System.Text; using System.Threading; namespace TestCom485 { class Program { static void Main(st ...
分类:其他好文   时间:2020-11-24 12:42:10    阅读次数:9
POJ 3368 Frequent values (ST表)
##题面 You are given a sequence of n integers a1 , a2 , ... , an in non-decreasing order. In addition to that, you are given several queries consisting ...
分类:其他好文   时间:2020-11-21 12:28:36    阅读次数:7
offset与style的区别
offset offset 可以得到任意样式表中的样式值 offset 系列获得的数值是没有单位的 offsetWidth 包含padding+border+width offsetWidth 等属性是只读属性,只能获取不能赋值 所以,我们想要获取元素大小位置,用offset更合适 style st ...
分类:其他好文   时间:2020-11-10 11:15:19    阅读次数:4
【Python】加密/解密
""" -*- coding:utf-8 -*- @Time :2020/11/4 19:02 @Author : @File :jar_encryption_util.py @Version:1.0 """ class JarEncryptionUtil: @staticmethod def st ...
分类:编程语言   时间:2020-11-07 17:32:29    阅读次数:30
react 中如如何实现上拉加载事件
文档上卷的距离+窗口的高度=文档的距离 就可以说到底了 但是我们往往在还未到低时候就开始加载下一页 //添加窗口滚动事件 window.onscroll = () => { //上卷距离 let st = document.documentElement.scrollTop || document. ...
分类:其他好文   时间:2020-11-01 21:35:08    阅读次数:21
while单循环练习
单循环实现一行十个★ # 方法一 i = 0 while i < 10: print("★", end="") i += 1 print() # 方法二(通过变量的形式实现) i = 0 str_var = "" while i < 10: strvar += "★" i += 1 print(st ...
分类:其他好文   时间:2020-11-01 21:00:01    阅读次数:29
git操作
1. git的创建 git init 可以创建git 仓库 git add 文件名 可以提交文件到暂存区 git diff HEAD -- 文件名 对比文件与上一个版本之间的差别 git reset HEAD 可以将add 之后的文件进行取消 git commit -m "注释" 提交 git st ...
分类:其他好文   时间:2020-11-01 10:19:32    阅读次数:16
Vue.js 源码目录设计
虽然vue2.x对TypeScript的支持还不是非常完善,但是从今年即将到来的3.0版本在GitHub上的仓库 vue-next 看,为TS提供更好的官方支持应该也会是一个重要特性,那么,在迎接3.0之前,不妨先来看看目前版本二者的搭配食用方法吧~ 创建项目 虽然GitHub上有各种各样相关的St ...
分类:Web程序   时间:2020-11-01 10:08:25    阅读次数:26
Dapper的基本使用
Dapper - a simple object mapper for .Net Dapper是.NET下一个micro ORM,它和Entity Framework或Nhibnate不同,属于轻量级的,并且是半自动的,也就是说实体类都要自己写。 下载地址:https://github.com/St ...
分类:移动开发   时间:2020-10-29 09:39:30    阅读次数:36
5888条   上一页 1 ... 8 9 10 11 12 ... 589 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!