上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 112 下一页
摘要: 包括向上转型和向下转型向上转型将子类的对象赋值给父类的引用一个引用能够调用哪些成员(变量和函数),取决于这个引用的类型一个引用调用的是哪个方法,取决于这个引用所指向的对象public class Person { String name; int age; Person(String name, int age) { this.name = name; ... 阅读全文
posted @ 2020-09-01 19:04 thomas_blog 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 子类对introduce进行复写public class Person { String name; int age; Person(String name, int age) { this.name = name; this.age = age; System.out.println("Person 二参构造"); } vo... 阅读全文
posted @ 2020-09-01 13:08 thomas_blog 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 使用this调用成员变量和构造函数public class Person { String name; int age; String address; Person() { System.out.println("Person 无参构造"); } Person(String name, int age) { this.name = ... 阅读全文
posted @ 2020-08-31 23:07 thomas_blog 阅读(79) 评论(0) 推荐(0) 编辑
摘要: static成员变量public class Person { String name; static int age; Person() { System.out.println("Person 无参构造"); } void eat() { System.out.println("Person 吃饭"); }}也可以通过类名方式调用... 阅读全文
posted @ 2020-08-31 22:50 thomas_blog 阅读(113) 评论(0) 推荐(0) 编辑
摘要: super调用父类构造,必须要写在第一行//Person.javapublic class Person { String name; int age; Person() { System.out.println("Person 无参构造"); } Person(String name, int age) { System.out.prin... 阅读全文
posted @ 2020-08-31 22:28 thomas_blog 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 创建分区[root@localhost lohr]# fdisk /dev/sdb欢迎使用 fdisk (util-linux 2.23.2)。更改将停留在内存中,直到您决定将更改写入磁盘。使用写入命令前请三思。命令(输入 m 获取帮助):p磁盘 /dev/sdb:5368 MB, 5368709120 字节,10485760 个扇区Units = 扇区 of 1 * 512 = 512 byte... 阅读全文
posted @ 2020-08-09 23:48 thomas_blog 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 扩容 [root@localhost lohr]# lvextend -L +2G /dev/thomas/thomas-lv Size of logical volume thomas/thomas-lv changed from 1.00 GiB (256 extents) to 3.00 Gi 阅读全文
posted @ 2020-08-09 22:27 thomas_blog 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 创建分区[root@localhost lohr]# fdisk /dev/sdb 欢迎使用 fdisk (util-linux 2.23.2)。更改将停留在内存中,直到您决定将更改写入磁盘。使用写入命令前请三思。Device does not contain a recognized partition table使用磁盘标识符 0xa7a34d5d 创建新的 DOS 磁盘标签。命令(输入 m ... 阅读全文
posted @ 2020-08-09 22:19 thomas_blog 阅读(1000) 评论(0) 推荐(0) 编辑
摘要: yum自动补全yum install bash-completion -y阿里云官方镜像站https://developer.aliyun.com/mirror/添加yum软件仓库wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo或者sudo yum-config-manag... 阅读全文
posted @ 2020-08-09 21:16 thomas_blog 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 下载地址http://activemq.apache.org/download.htmlhttp://archive.apache.org/dist/activemq/启动服务mqtt管理员登录用户名密码在 users.properties 配置文件中定义查看当前mqtt状态,管理mqtt等操作 阅读全文
posted @ 2020-07-05 21:19 thomas_blog 阅读(207) 评论(0) 推荐(0) 编辑
上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 112 下一页