首页
留言
Search
1
在Centos7下搭建Socks5代理服务器
1,207 阅读
2
在windows11通过Zip安装Mysql5.7
728 阅读
3
Mysql5.7开放远程登录
636 阅读
4
数据库
619 阅读
5
mysql5.7基本命令
523 阅读
综合
正则表达式
git
系统
centos7
ubuntu
kali
Debian
网络
socks5
wireguard
运维
docker
hadoop
kubernetes
hive
openstack
ElasticSearch
ansible
前端
三剑客
Python
Python3
selenium
Flask
PHP
PHP基础
ThinkPHP
游戏
我的世界
算法
递归
排序
查找
软件
ide
Xshell
vim
PicGo
Typora
云盘
安全
靶场
reverse
Java
JavaSE
Spring
MyBatis
C++
QT
数据库
mysql
登录
Search
标签搜索
java
centos7
linux
centos
html5
JavaScript
php
css3
mysql
spring
mysql5.7
linux全栈
ubuntu
BeanFactory
SpringBean
python
python3
ApplicationContext
kali
mysql8.0
我亏一点
累计撰写
139
篇文章
累计收到
3
条评论
首页
栏目
综合
正则表达式
git
系统
centos7
ubuntu
kali
Debian
网络
socks5
wireguard
运维
docker
hadoop
kubernetes
hive
openstack
ElasticSearch
ansible
前端
三剑客
Python
Python3
selenium
Flask
PHP
PHP基础
ThinkPHP
游戏
我的世界
算法
递归
排序
查找
软件
ide
Xshell
vim
PicGo
Typora
云盘
安全
靶场
reverse
Java
JavaSE
Spring
MyBatis
C++
QT
数据库
mysql
页面
留言
搜索到
139
篇与
1585364631
的结果
2023-02-18
java 比较两个数组内容是否相同
java 比较两个数组内容是否相同==符号比较1.比较基本数据类型时会比较数据值2.比较引用数据类型时会比较地址值 public static boolean checkArraryContent(int arr1[],int[] arr2){ // 比较数组长度 if(arr1.length != arr2.length){ return false; } for(int i = 0; i < arr1.lenght; i++){ if(arr1[i]] != arr2[i]){ return false; } } return true; }
2023年02月18日
220 阅读
0 评论
0 点赞
2023-02-17
Linux 查看内核版本
Linux 查看内核版本unameuname -srmhostnamectlhostnamectl hostnamectl | grep Kernel/proc/versioncat /proc/version内容解析Linux version 3.10.0-957.21.3.el7.x86_643:内核版本10:主修订版本0-957:次要修订版本21:补丁版本
2023年02月17日
265 阅读
0 评论
0 点赞
2023-02-17
ubuntu apt-get更换国内源
ubuntu apt-get更换国内源1.修改sources.list配置文件vi /etc/apt/sources.list在首行添加阿里云源deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse保存退出2.更新缓存apt-get update apt-get upgrade
2023年02月17日
277 阅读
0 评论
0 点赞
2023-02-17
ubuntu设置允许root用户远程登录
ubuntu设置允许root用户远程登录1.修改root密码su passwd root2.配置ssh允许root远程登录sudo vi /etc/ssh/sshd_config取消注释PermitRootLogin并修改值prohibit-password为yesPermitRootLogin yes3.重启ssh服务service ssh restart service sshd restart
2023年02月17日
284 阅读
0 评论
0 点赞
2023-02-16
JAVA类型转换面试题
下列代码是否存在错误,如果有,请指出说明,并且改正1 pulbic static void main(String[] args){ byte b1 = 3; byte b2 = 4; byte b3 = b1 + b2; }有错误,因为char,byte,short在计算时会自动类型提升为int修改如下:pulbic static void main(String[] args){ byte b1 = 3; byte b2 = 4; byte b3 = (byte)(b1 + b2); }2 pulbic static void main(String[] args){ byte b3 = 3 + 4; }没有错误,Java存在常量优化机制,在编译的时候javac就会将3和4这两个字面量进行运算,产生字节码byte b = 73 pulbic static void main(String[] args){ byte b3 = 300 + 4; }有错误,虽然Java存在常量优化机制,但是最终计算结果超出了byte可接受长度范围,所以报错
2023年02月16日
254 阅读
0 评论
0 点赞
1
...
11
12
13
...
28