码迷,mamicode.com
首页 >  
搜索关键字:word length    ( 36649个结果
C#——串口通信自动连接
转:https://www.cnblogs.com/hnsongbiao/p/8722243.html帧头(3)+设备号(1)+指令类型(2)+数据长度(2)+载荷+CRC(2)需要在下位机上实现的部分:接收到一帧数据(帧头为53 5A 59,设备号01,类型为02,载荷无)53 59 A2 01 ...
分类:Windows程序   时间:2021-03-11 11:43:15    阅读次数:0
1668. 最大重复子字符串
题目:给你一个字符串 sequence ,如果字符串 word 连续重复 k 次形成的字符串是 sequence 的一个子字符串,那么单词 word 的 重复值为 k 。单词 word 的 最大重复值 是单词 word 在 sequence 中最大的重复值。如果 word 不是 sequence 的 ...
分类:其他好文   时间:2021-03-11 10:31:48    阅读次数:0
1065 A+B and C (64bit) (20 分)
题目描述 1065 A+B and C (64bit) (20 分) Given three integers A, B and C in [?], you are supposed to tell whether A+B>C. Input Specification: The first line ...
分类:其他好文   时间:2021-03-10 13:11:02    阅读次数:0
idea中将单个java类导出为jar包文件的方法
方法如下: 1. 写好功能工具类,如: public class Hello { public static void main(String[] args) throws Exception { Hello hello = new Hello(); hello.sayHello("word. bi ...
分类:编程语言   时间:2021-03-09 13:53:56    阅读次数:0
TKCORE框架学习之入门篇(五)--代码表的使用
代码表使用 与 Combo 控件结合用作下拉列表 在 Xml/Data 文件夹文件夹下的 xml 文件中使用: <tk:Field DataType="string"> <tk:FieldName>USER_SEX</tk:FieldName> <tk:DisplayName> <tk:Conten ...
分类:其他好文   时间:2021-03-09 13:05:51    阅读次数:0
冰凉的键盘挡不住炽热的心
Integer max = null; //今天天气阴 for (int i = 0; i < nums.length; i++) { boolean change = false; //我拿着雨伞来到青浦图书馆,当然这里j虽然是从比i大一个数的地方开始自增 //但最后也需要将数字从开始的地方开始自 ...
分类:其他好文   时间:2021-03-08 13:50:41    阅读次数:0
分类筛选
async getHomes(item) { let temp = await http.getHome(); let type = []; this.content.push(type); this.show = type; for (var i = 0; i < temp.length; i++ ...
分类:其他好文   时间:2021-03-08 13:34:55    阅读次数:0
数组方法
创建一个数组; var arr = new Array(); var arry = [11,12,13,14,15]; arry[8] = 199; console.log(arry.length); // 9 console.log(arry); // 11,12,13,14,15,,,,199 ...
分类:编程语言   时间:2021-03-08 13:30:34    阅读次数:0
java数组的声明创建
数组声明创建 获取数组的长度:数组名.length 增强型for循环 int [] arrays = {1,2,3,4,5}; for (int array : arrays) { System.out.println(array); 数组的声明 dataType[] arrayRefVar; // ...
分类:编程语言   时间:2021-03-08 13:17:19    阅读次数:0
【jdk1.8源码分析】总章
一、总章 1.1 前言 本文主要参考这篇文章 另外增加了自己觉得重要的部分 1.2 集合框架概览图 1.3 基础接口源码解析 1.3.1 Iterator public interface Iterator<E> { boolean hasNext(); E next(); default void ...
分类:其他好文   时间:2021-03-08 13:04:17    阅读次数:0
36649条   上一页 1 ... 33 34 35 36 37 ... 3665 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!