码迷,mamicode.com
首页 >  
搜索关键字:eclipse color theme    ( 205641个结果
参数验证,不传参则报错
let require = ()=>{throw new Error('函数必须传参')} let print = (num=require())=>{console.log(num)} print(2) // 2 print(null) // null print() // 报错 ...
分类:其他好文   时间:2021-02-04 11:52:57    阅读次数:0
2 移动端开发选择
移动端的特殊样式 /*去除a连接点击时 后侧的高亮背景*/ a { -webkit-tap-highlight-color: transparent; } /*添加这个属性 iOS上 输入框和按钮才可以书写自定义样式*/ input { -webkit-appearance: none; } /*禁 ...
分类:移动开发   时间:2021-02-04 11:48:59    阅读次数:0
eclipse中解决update maven之后jre被改成1.5的问题
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.1</version> <configur ...
分类:系统相关   时间:2021-02-03 11:07:55    阅读次数:0
VUE3.0 路由去掉#号
createWebHistory路由模式路径不带#号(生产环境下不能直接访问项目,需要nginx转发) http://localhost:8080/#/ const router = createRouter({ history: createWebHistory(), routes }); cre ...
分类:其他好文   时间:2021-02-02 11:14:24    阅读次数:0
调试ICCAVR溢出bug
在以往keil-STM32调试代码时没有遇见过这个问题 代码书写不规范导致的 unsighned char value=100; value = (unsighned int)value*99/100; 在调试过程中 没有对value进行强制类型转换 所以导致输出的目标值不对 还有一个问题 在ICC ...
分类:其他好文   时间:2021-02-02 11:07:41    阅读次数:0
css
语法:https://www.runoob.com/css/css-syntax.html <!DOctype html> <html> <head> <meta charset="utf-8"> <title>123</title> <style> body{bockground-color:#d ...
分类:Web程序   时间:2021-02-02 10:52:40    阅读次数:0
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
205641条   上一页 1 ... 69 70 71 72 73 ... 20565 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!