String对象的不可变性 在实现代码中,String类被final关键字修饰了。变量char数组也被final修饰了。 类被final修饰代表该类不可被继承,char[]被final+private修饰,代表String对象不可被修改。Java实现的这个特性叫做String对象的不可变性,即Str ...
分类:
其他好文 时间:
2021-07-19 16:51:57
阅读次数:
0
# 本次实验 共四台机器 # A: 10.0.0.11 为client # B: 10.0.0.12 为主节点 # C: 10.0.0.13 为从节点1 # D: 10.0.0.14 为从节点2 # 首先配置BCD主从复制 (这里不做重复描写,参考我前面的文档) # 开始安装mycat相关包,以及数 ...
分类:
系统相关 时间:
2021-06-28 19:25:19
阅读次数:
0
目录 一、RAID磁盘阵列 二、阵列卡概述 三、阵列卡的缓存 四、创建RAID 五、创建软RAID磁盘阵列 一、RAID磁盘阵列 是Redundant Array of Independent Disks的缩写,中文简称为独立冗余磁盘阵列 把多块独立的物理硬盘按不同的方式组合起来形成一个硬盘组(逻辑 ...
分类:
系统相关 时间:
2021-06-24 17:40:30
阅读次数:
0
ssa2 = location.read_locationa(row[4]) datajson["weather"]=ssa2['weather'] datajson["temperature"]=ssa2['temperature'] datajson["windpower"]=ssa2['win ...
分类:
Web程序 时间:
2021-06-21 20:16:26
阅读次数:
0
1、CentOS7环境变量分系统环境变量和用户环境变量 系统环境变量:/etc/bashrc、/etc/profile、/etc/profile.d 推荐:/etc/profile.d 用户环境变量:~/.bash_profile、~/.bashrc 推荐:~/.bash_profile 2、查看环 ...
分类:
其他好文 时间:
2021-06-20 18:02:13
阅读次数:
0
1.阿里js文件路径 <script src="http://g.tbcdn.cn/mtb/lib-flexible/0.3.4/??flexible_css.js,flexible.js"></script> 2.文件dom <!DOCTYPE html> <html lang="en"> <he ...
分类:
移动开发 时间:
2021-06-11 19:05:55
阅读次数:
0
一手遮天 Android - view(按钮类): Button 样式 ...
分类:
移动开发 时间:
2021-06-02 18:41:08
阅读次数:
0
1、String的基本特性 String:字符串,使用一对""引起来表示。 String sl = "hello";//字面量的定义方式 String s2 = new String("hello") ; String声明为final的, 不可被继承。 String实现了Serializable接口 ...
分类:
其他好文 时间:
2021-06-02 14:38:33
阅读次数:
0
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:
其他好文 时间:
2021-06-02 12:07:29
阅读次数:
0
+ + + + + + + + + + | stream of elements + > |filter+-> |sorted+-> |map+-> |collect| + + + + + + + + + + stream() ? 为集合创建串行流。 forEach Stream 提供了新的方法 ' ...
分类:
其他好文 时间:
2021-05-24 06:53:50
阅读次数:
0