G
N
I
D
A
O
L
W
e
l
c
o
m
e
: )
摘要: 1.使用YUM源仓库进行部署 文档链接:https://www.cnblogs.com/DB-MYSQL/p/14127798.html 2.使用源码方式进行部署 环境准备: 操作系统:CentOS 7.5 数据库版本:MySQL 5.7 安装目录:data/3307 1.下载MySQL5.7数据库 阅读全文
posted @ 2021-02-15 21:08 狸猫大侠 阅读(60) 评论(1) 推荐(0) 编辑
摘要: Java中数组初始化 package com.run; public class ArayDemo08 { public static void main(String[] args) { ArayDemo08 Y = new ArayDemo08(); int S = Y.test(); int 阅读全文
posted @ 2021-01-03 16:48 狸猫大侠 阅读(165) 评论(0) 推荐(0) 编辑
摘要: Java中的switch和case 1.switch case 语句有如下规则: switch 语句中的变量类型可以是: byte、short、int 或者 char。从 Java SE 7 开始,switch 支持字符串 String 类型了,同时 case 标签必须为字符串常量或字面量。 swi 阅读全文
posted @ 2021-01-03 16:22 狸猫大侠 阅读(282) 评论(0) 推荐(0) 编辑
摘要: Java条件语句 1.if判断语句 package com.run;import com.sun.scenario.effect.impl.sw.sse.SSEBlend_SRC_OUTPeer;public class Demo06 { //这是个判断 public static void mai 阅读全文
posted @ 2021-01-02 21:48 狸猫大侠 阅读(122) 评论(0) 推荐(0) 编辑
摘要: Java 循环 Java中循环方法1.while循环 package com.run;//这是个类public class Demo04 { //这是个run方法 public void run(){ int i = 10 ; while (i<=100){ System.out.print(i + 阅读全文
posted @ 2021-01-02 03:37 狸猫大侠 阅读(141) 评论(0) 推荐(0) 编辑
摘要: Java变量 1.变量的定义:格式如下:type identifier [ = value][, identifier [= value] ...] ;示例: //测试类 package com.run;public class Demo01 { private int A ; public Str 阅读全文
posted @ 2020-12-27 13:44 狸猫大侠 阅读(102) 评论(0) 推荐(0) 编辑
摘要: Java 数据类型 Java中的数据类型分类:byte:[byte 数据类型是8位、有符号的,以二进制补码表示的整数;-128~127]short:[short 数据类型是 16 位、有符号的以二进制补码表示的整数;-32768~32767]int:[int 数据类型是32位、有符号的以二进制补码表 阅读全文
posted @ 2020-12-27 01:35 狸猫大侠 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 在linux编译php7.x 1. 下载php包(php7.x) http://cn2.php.net/get/php-7.2.12.tar.bz2/from/this/mirror 2. 编译前下载扩展软件包 其中需要下载如下软件包 gcc libxml2 libxml2-devel openss 阅读全文
posted @ 2020-12-15 17:08 狸猫大侠 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1.下载mysql5.7软件包 1.下载mysql5.7软件包 下载地址: https://dev.mysql.com/downloads/repo/yum/ # 下载 shell> wget https://dev.mysql.com/get/mysql57-community-release-e 阅读全文
posted @ 2020-12-13 04:15 狸猫大侠 阅读(82) 评论(0) 推荐(0) 编辑
摘要: docker-compose中yml文件文章作者: csdn[常名先生] https://blog.csdn.net/jiangbenchu/article/details/102495531 Compose和Docker兼容性: Compose 文件格式有3个版本,分别为1, 2.x 和 3.x 阅读全文
posted @ 2020-03-14 00:15 狸猫大侠 阅读(2368) 评论(0) 推荐(0) 编辑