一. 今天大多在写c++的程序报告 此外通过一个程序再对继承有一个了解 public class Question { String text; String [] options; public void print() { System.out.println(this.text); for(i ...
分类:
编程语言 时间:
2020-07-17 09:30:05
阅读次数:
54
引言 MySQL 是最流行的关系型数据库管理系统,在 WEB 应用方面 MySQL 是最好的 RDBMS(Relational Database Management System:关系数据库管理系统)应用软件之一。 概念 数据库(Database)是按照数据结构来组织、存储和管理数据的仓库。 正文 ...
分类:
数据库 时间:
2020-07-17 09:28:52
阅读次数:
62
安装Docker 1 2 3 4 5 [root@localhost /]# cat /etc/redhat-release CentOS Linux release 7.5.1804 (Core) [root@localhost /]# yum install docker-ce -y [root ...
分类:
数据库 时间:
2020-07-17 01:22:08
阅读次数:
138
1. adb root 2. adb disable-verity (最新的adb 工具包才支持adb disable-verity命令,如果是Linux开发环境,则可使用工程编译结果目录out/host/linux-x86/bin下的adb执行文件) 3. adb reboot 重启设备 4. a ...
分类:
数据库 时间:
2020-07-16 21:25:33
阅读次数:
89
本文介绍一下Jenkins pipeline的语法实例介绍及踩坑记录
分类:
其他好文 时间:
2020-07-16 18:30:29
阅读次数:
106
1:与c语言相同,定义一个下标从0开始遍历 for(int i=0 ; i<a.length() ; i++){ System.out.print(a[i]+ " "); } 2: 定义一个num作为数组nums的其中一个元素,输出时便会自动从头到尾遍历 for ( int num :nums ) ...
分类:
编程语言 时间:
2020-07-16 18:29:03
阅读次数:
71
一、配置网卡Ip (1)SUSE图形化界配置 (2)网卡文件配置 目录和centos稍微有点区别:/etc/sysconfig/network 配置网关: 注意SUSE不支持在ifcfg-ethX文件里面配置GATEWAY,需要在这个目录下(/etc/sysconfig/network/)创建一个r ...
分类:
其他好文 时间:
2020-07-16 18:12:17
阅读次数:
232
当调用 StringBuilder.Insert 方法 尝试增加 StringBuilder 对象的长度超出其 StringBuilder.MaxCapacity 属性指定的大小。 下面的示例演示了在示例尝试插入将导致对象的 Length 属性超过其最大容量的字符串时,调用 StringBuilde ...
分类:
其他好文 时间:
2020-07-16 11:59:20
阅读次数:
88
类 public class jarTs { public static void main(String[] args) throws IOException { String path =System.getProperty("user.dir"); System.out.println("us ...
分类:
编程语言 时间:
2020-07-16 11:49:30
阅读次数:
58
When working with Web applications, use a context instance per request. Install-Package EntityFramework -Version using System.Data.Entity; public clas ...
分类:
其他好文 时间:
2020-07-16 11:45:43
阅读次数:
67