自动类型转换 byte b=3; int x=b;//将byte类型的变量b转换为int类型无需特殊声明 强制类型转换 两种类型不兼容,或者目标类型取值范围小于源类型时,自动类型转换无法进行,这时需要强制类型转换。 如: public class test { public static void ...
分类:
编程语言 时间:
2021-06-29 15:25:02
阅读次数:
0
#1、安装ElasticSearch ###拉取镜像 docker pull docker.elastic.co/elasticsearch/elasticsearch:7.1.1 ###创建资料卷 docker volume create es-data docker volume create ...
分类:
其他好文 时间:
2021-06-28 21:17:34
阅读次数:
0
systemctl管理脚本 systemctl脚本存放在:/usr/lib/systemd/,有系统(system)和用户(user)之分 1、/usr/lib/systemd/system #系统服务,开机不需要登陆就能运行的程序(相当于开启自启) 2、/usr/lib/systemd/user ...
分类:
其他好文 时间:
2021-06-28 21:11:29
阅读次数:
0
编译程序的时候,发现报错:本地源"C:\Program Files (x86)\DevExpress 20.1\Components\System\Components\Packages"不存在。 这个是之前试用Devexpress控件时,卸载后的残留, visual studio 界面上无法删除。 ...
分类:
其他好文 时间:
2021-06-28 21:10:16
阅读次数:
0
有人说要先安装Cython,但是我安装了Cython之后还是报这个错误,然后就换了一种安装思路 先去清华源镜像站https://opentuna.cn/pypi/web/simple/pycocotools/下载pycocotools-2.0.2.tar.gz 然后cd到pycocotools-2. ...
Warning: World-writable config file '/etc/mysql/my.cnf' is ignoredERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mys ...
分类:
数据库 时间:
2021-06-28 20:57:43
阅读次数:
0
经常使用命令行进行一些操作,一些常用的命令一遍遍的敲比较浪费时间,想通过别名的方式简化操作。 1、就是编辑~/.bash_profile,比如添加PS:=两边没有空格: alias st="git status" alias pull='git pull' alias push='git push' ...
分类:
系统相关 时间:
2021-06-28 20:41:29
阅读次数:
0
JDK8下载网址 按默认设置一直点下一步 记录安装路径 本机路径:C:\Program Files\Java 该目录下包含2个路径 后面需要用 C:\Program Files\Java\jdk1.8.0_291 C:\Program Files\Java\jre1.8.0_291 配置环境变量 在 ...
分类:
其他好文 时间:
2021-06-28 20:41:11
阅读次数:
0
公司项目C#操作mysql数据库时出现几个问题的解决方案作下记录 1、The MySQL server is running with the --secure-file-priv option so it cannot execute this statement” 解决方法:修改my.ini 配 ...
分类:
数据库 时间:
2021-06-28 20:37:38
阅读次数:
0
一、FTP简介 文件传输协议(英文:File Transfer Protocol,缩写:FTP)是用于在网络上进行文件传输的一套标准协议。它工作于网络传输协议的应用层,使用客户/服务器模式,主要是用来在服务器与客户端之间进行数据传输。FTP 其实是以 TCP 封包的模式进行服务器与客户端计算机之间的 ...
分类:
系统相关 时间:
2021-06-28 20:36:24
阅读次数:
0