数据类型 语言分类 强类型语言 要求变量的使用要言给符合规定,所有变量必须要先定义后使用 弱类型语言 Java数据类型分类 基本类型 数值类型 整数类型 byte:占1个字节,范围:-128~127 short:占2个字节,范围:-32768~32767 int:占4个字节,范围:-21474836 ...
分类:
其他好文 时间:
2021-02-18 13:40:13
阅读次数:
0
NULL值是对列的一种特殊约束,NULL与空值'' 是两个不一样的值,NULL表示不确定的值。Mysql中可以操作NULL的操作符为以下四个: ① IS NULL (可使用索引) ② IS NOT NULL (索引失效) ③ <=> 太空船操作符,select NULL <=> NULL 得到结果t ...
分类:
其他好文 时间:
2021-02-17 15:02:32
阅读次数:
0
https://www.acwing.com/problem/content/1143/ \(裸题\) #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); c ...
分类:
其他好文 时间:
2021-02-17 14:58:39
阅读次数:
0
https://www.acwing.com/problem/content/1144/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:
其他好文 时间:
2021-02-17 14:57:50
阅读次数:
0
高斯消元解线性方程组 时间复杂度:O(\(n^3\)) https://www.luogu.com.cn/problem/P3389 题意:给定一个线性方程组,对其求解。 #include <bits/stdc++.h> using namespace std; const char nl = '\ ...
分类:
其他好文 时间:
2021-02-17 14:54:53
阅读次数:
0
1.1 JS continue 语句 定义和用法: continue 用于跳过循环中的一个迭代,并继续执行循环中的下一个迭代。 continue 与 break 语句的区别是:break 是结束整个循环体,continue是结束单次循环。 但是,在执行 continue 语句时,表现出了两种不同类型 ...
分类:
编程语言 时间:
2021-02-17 14:41:16
阅读次数:
0
T4模板 <#@ template debug="false" hostspecific="false" language="C#" #> <#@ output extension=".cs" #> <#@ assembly name="System.Data" #> <#@ assembly na ...
分类:
移动开发 时间:
2021-02-17 14:41:02
阅读次数:
0
1.根目录下新建vue.config.js 2. module.exports = { lintOnSave: false, devServer: { overlay: { warnings: true, errors: true } } } ...
分类:
其他好文 时间:
2021-02-17 14:39:06
阅读次数:
0
最重要的内置类型有数字、序列、映射、类、实例和异常。 真值检测 if和while都可以做真值检测,默认情况下,如果一个对象的__bool__()返回False或者__len__()返回0,那么该对象为假;否则都为真。 因此内置类型为假的情况有: 常量:None和False 任何值为0的数字类型:0, ...
分类:
编程语言 时间:
2021-02-17 14:02:30
阅读次数:
0
关系运算符 在C++中关系运算中,其结果为bool ,分为true 和 false 逻辑运算符 在C++中逻辑运算符,其结果也为bool,优先级如下: ...
分类:
其他好文 时间:
2021-02-16 12:24:54
阅读次数:
0