参见微软官方 https://docs.microsoft.com/en-us/windows/win32/sysinfo/operating-system-versionusing System; using System.Collections.Generic; using System.Lin ...
苹果apple mac 系统检测 日常分析 软件 https://gigafiles.apple.com/#/download 现有文件可供下载。 备注 Capture Data 9.9.0 This application gathers information from your system ...
分类:
其他好文 时间:
2021-04-16 11:49:46
阅读次数:
0
MySQL介绍 2.1什么是数据库 作用:存储数据的,能够长期(断电,关机)保持数据。 数据存储在哪里:硬盘和内存 我们平时说的数据库:数据库管理系统(软件)(databases manager system:dbs) 数据库软件(电脑的Excel软件)中可以创建多个文件夹(数据库(逻辑)) 一个数 ...
分类:
数据库 时间:
2021-04-16 11:47:47
阅读次数:
0
数据库的分类 2.2.1关系型数据库(RDBMS:relative database manager system) 特点: (1)表与表之间有关系 (2)有行有列(和Excel类似) (3)是通过SQL语句去操作数据库 比较有名代表: MySQL:免费,开源 Oracle:甲骨文,收费,大型公司, ...
分类:
数据库 时间:
2021-04-16 11:47:17
阅读次数:
0
public class Test { public static void main(String[] args) { int a = 3; int b = a++; //a先给b赋值,所以b是3,然后再自增1,所以再输出a为4 System.out.println(a); //输出结果 4 in ...
分类:
其他好文 时间:
2021-04-15 12:49:34
阅读次数:
0
通过官方Docker Registry在局域网内部搭建私有镜像注册中心. 1 - 拉取registry镜像 [anliven@anliven ~]$ cat /etc/system-release # 本机系统版本 CentOS Linux release 7.8.2003 (Core) [anli ...
分类:
其他好文 时间:
2021-04-15 12:32:53
阅读次数:
0
众所周知 对于基本类型而言,equals和==没有区别,但对于引用类型 equals比较的是内容(类型+值),==比较的是地址 一开始我以为像Integer这种包装类由于是引用类型,应该用equals比较 直到... Integer a=20; Integer b=20; System.out.pr ...
分类:
其他好文 时间:
2021-04-15 12:17:29
阅读次数:
0
增强for循环 public class ForDemo{ public static void main(String[] args){ int[] numbers = {10,20,30,40,50}; //遍历数组元素 for(int x:numbers){ System.out.printl ...
分类:
编程语言 时间:
2021-04-14 12:36:49
阅读次数:
0
一、系统烧录 工具:SDFormatter(格式化sd卡),Win32DiskImager(向sd卡写入系统) 1. 使用SDFormatter格式化sd卡 使用默认的快速格式化即可,需要格式化两次才能成功。 2. 在树莓派官网下载最新系统镜像。 Operating system images 推荐 ...
分类:
Web程序 时间:
2021-04-14 12:07:19
阅读次数:
0
// 1.Java方法 public static void main (String args[]){ int res = sum(1, 2); // int res = HelloWorld.sum(1, 2); System.out.println(res); } // 求和 public s ...
分类:
编程语言 时间:
2021-04-14 12:05:41
阅读次数:
0