码迷,mamicode.com
首页 >  
搜索关键字:color    ( 180498个结果
ArrayIndexOutOfBoundsException
数组角标越界异常:ArrayIndexOutOfBoundsException int[] arr = new int[]{1,2,3,4,5}; 情况一: for(int i = 0;i <= arr.length;i++){ System.out.println(arr[i]); } 情况二: ...
分类:其他好文   时间:2021-02-02 10:33:22    阅读次数:0
在Visual Studio,匹配换行符以及空白符
// [\S\s\r\n]*// == 忽略换行匹配 (.)* 是单行 [\S\s\r\n]* 多行 因为在Visual Studio,你若需要匹配换行符以及空白符,需要配合[\S\s]以及[^]。 而\S\s是什么意思呢? 大写的\S是匹配任何非空白字符。 小写的\s是匹配任何空白字符,其中包括空 ...
分类:其他好文   时间:2021-02-02 10:31:20    阅读次数:0
拿下Win32非模态对话框
1、点击不同按钮分别创建出模态与非模态对话框子窗口,分别指定每个窗口单独的对话框窗口函数。 #include <Windows.h> #include <tchar.h> #include <CommCtrl.h> #include "resource.h" INT_PTR WINAPI Dialo ...
分类:Windows程序   时间:2021-02-01 12:52:36    阅读次数:0
Redis 5 种数据类型
字符串 @GetMapping("/string") public String stringTest(){ redisTemplate.opsForValue().set("str","Hello World"); String str = (String) redisTemplate.opsFo ...
分类:其他好文   时间:2021-02-01 12:45:42    阅读次数:0
layui模块化----自定义模块定义和使用基础知识
layui基础知识 1.layui模块化编程引入方法 只需要引入两个文件layui.css和layui.js <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=devic ...
分类:其他好文   时间:2021-02-01 11:55:02    阅读次数:0
Educational Codeforces Round 103 (Rated for Div. 2) E Pattern Matching
E. Pattern Matching 题目链接:https://codeforces.com/contest/1476/problem/E 题目大意:给你n个模式串和m个字符串(长度都为k),要求你将模式串进行排序使得每个字符串在排序后的模式串中第一个匹配的是未排序前的模式串中第mt个模式串。对于 ...
分类:其他好文   时间:2021-02-01 11:51:02    阅读次数:0
poll系统调用
1 #include <poll.h> 2 int poll(struct pollfd* fds,nfds_t nfds,int timeout); fds,pollfd结构类型的数组(可变长数组,数组元素为结构体pollfd);结构体中含有三个成员变量(int,short,short),分别为文 ...
分类:其他好文   时间:2021-02-01 11:45:38    阅读次数:0
nGrinder介绍、编写脚本与执行
目录: 性能测试工具的选型 nGrinder的介绍 nGrinder环境的搭建 Groovy语言的介绍 常用的工具类 nGrinder代码实例 执行测试 一、性能测试工具的选型 1、主流的性能测试工具 LoadRunner JMeter 与 nGrinder对比 1.1、Loadrunner 基于U ...
分类:其他好文   时间:2021-02-01 11:45:17    阅读次数:0
VS 替换字符串的值
string str="我有一只狗"; str.strReplace("狗","猫"); //展示str "我有一只猫" ...
分类:其他好文   时间:2021-01-30 12:22:58    阅读次数:0
饥饿的奶牛(不重区间最大值)
牛在饲料槽前排好了队。饲料槽依次用1到N(1≤N≤2000)编号。每天晚上,一头幸运的牛根据约翰的规则,吃其中一些槽里的饲料。 约翰提供BB个区间的清单。一个区间是一对整数start?end1≤start≤end≤N,表示一些连续的饲料槽,比如1-3,7-8,3-4等等。牛可以任意选择区间,但是牛选 ...
分类:其他好文   时间:2021-01-30 12:10:31    阅读次数:0
180498条   上一页 1 ... 60 61 62 63 64 ... 18050 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!