<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:
编程语言 时间:
2021-06-02 16:27:48
阅读次数:
0
GSettings 的配置文件是 xml 格式的,文件需以 .gschema.xml 结尾,文件名通常与 id 相同。配置文件安装在 /usr/share/glib-2.0/schemas/ 目录下,手动添加进去的文件需要执行 sudo glib-complie-schemas /usr/share ...
分类:
编程语言 时间:
2021-06-02 15:37:39
阅读次数:
0
switch结构 switch(整数|字符|枚举|String){ case 内容:{ 内容满足时执行; [break;] } case 内容:{ 内容满足时执行; [break;] } default: { } } do while结构 do{ …… }while(boolean表达式) cont ...
分类:
其他好文 时间:
2021-06-02 15:24:52
阅读次数:
0
typeof 1. 对于原始类型来说,除了 null 都可以调用typeof显示正确的类型 typeof 1 // 'number' typeof '1' // 'string' typeof undefined // 'undefined' typeof true // 'boolean' typ ...
分类:
Web程序 时间:
2021-06-02 15:04:30
阅读次数:
0
JS中类型转换有哪几种? 1. 转换成数字 2. 转换成布尔值 3. 转换成字符串 http://47.98.159.95/my_blog/015/type.jpg https://www.jianshu.com/p/7cb41d109b7e https://www.cnblogs.com/xiao ...
分类:
Web程序 时间:
2021-06-02 15:03:22
阅读次数:
0
public static void main(String[] args) { int[] arr = {4, 2, 5, 9, 1, 6, 8}; boolean flag = false; for (int i = 1; i <= arr.length; i++) { System.out.p ...
分类:
编程语言 时间:
2021-06-02 11:59:30
阅读次数:
0
包装类 Byte、Character、Boolean、Long、Short、Integer、Double、Float 这里拿Integer作举例说明,其他几种包装类类似。 为什么使用包装类? 某些方法的参数必须是对象,为了让基本数据类型的数据能作为参数,提供了包装类! 包装类可以提供更多的功能 In ...
分类:
其他好文 时间:
2021-06-02 10:50:19
阅读次数:
0
(一)自动类型转换 在java 程序中,不同的基本类型的值经常需要进行相互类型转换,类型转换分为自动类型转换和强制类型转换。布尔类型boolean占有一个字节,由于其本身所代码的特殊含义,boolean类型与其他基本类型不能进行类型的转换(既不能进行自动类型的提升,也不能强制类型转换), 否则,将编 ...
分类:
其他好文 时间:
2021-05-24 17:08:29
阅读次数:
0
隐式类型转换 1. isNaN()判断数据类型是不是NaN 返回值为boolean,执行过程中是将数据放到number方法中 isNaN('123'); // 结果:false 2. ++ -- +、-(一元正负运算符) var a = 10; console.log(-a); //结果:-10; ...
分类:
Web程序 时间:
2021-05-24 15:52:51
阅读次数:
0
public class demo3 { public static void main(String[] args) { //整数拓展 进制 二进制0b 十进制 八进制0 十六进制0x int i = 10; int i2 = 020; //八进制0 没8为一个周期 周期为十 int i3 = 0 ...
分类:
其他好文 时间:
2021-05-24 15:28:04
阅读次数:
0