方法: 1、定义临时变量 2、不用定义临时变量 3、使用位运算符 public class SwapTest { public static void main(String[] args) { int num1 = 10; int num2 = 20; //方式一:定义临时变量的方式 //推荐使用 ...
分类:
编程语言 时间:
2021-06-05 18:02:27
阅读次数:
0
IP地址的设置 在配置网络之前我们先要知道centos的网卡名称是什么,centos7不再使用 ifconfig 命令,可通过命令 ip addr 查看,如图,网卡名为ens32,是没有IP地址的 动态IP 修改网卡配置文件 vi /etc/sysconfig/network-scripts/ifc ...
分类:
其他好文 时间:
2021-06-05 17:52:05
阅读次数:
0
opcenter8的开发方式跟之前的camstar7版本差不多,自带的UI开发上手难度大,调试困难,开发周期变得很长,所以此文章再不添加任何第三方插件的情况下使用系统自带的Angular.js+bootstrap做开发 1.添加WEBAPI支持 添加WebApiConfig.cs public st ...
1 package com.future; 2 3 import java.util.concurrent.*; 4 5 6 public class FDemo { 7 public static final ExecutorService service = Executors.newSingl ...
分类:
其他好文 时间:
2021-06-04 19:55:49
阅读次数:
0
linux防火墙使用以及配置 Centos 7 firewall : 1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : ...
分类:
系统相关 时间:
2021-06-04 19:47:34
阅读次数:
0
HelloWorld 随便新建一个文件夹,存放代码 新建一个java文件 。 文件后缀名为.java 。Hello.java 。【注意】系统可能没有显示文件后缀名,我们需要手动 编写代码 public class Hello{ public static void main (String[] ar ...
分类:
其他好文 时间:
2021-06-04 19:12:47
阅读次数:
0
一、Blazor Server 编译与发布 cd /home/soursecode/ServerDemo donet publish -c release mv bin/release/net5.0/publish /var/www/ServerDemo supervisor守护serverDemo ...
分类:
Web程序 时间:
2021-06-04 19:04:52
阅读次数:
0
Hello World 随便建一个文件夹,存放代码 新建一个java文件 文件后缀名.java Hello 【注意点】系统没有显示文件后缀名,需要手动打开 编写代码 public class Hello{ public static void main(String[] args){ System. ...
分类:
其他好文 时间:
2021-06-04 18:59:52
阅读次数:
0
1、引入bootstrap和validate <script src="{% static 'js/jquery.min.js' %}"></script> <link href="{% static 'css/bootstrap.css' %}" rel="stylesheet"> {# 前端校验 ...
分类:
其他好文 时间:
2021-06-04 18:44:54
阅读次数:
0
public class test{ public static void main(String[] arg){ //Date转为LocalDateTime DateTimeFormatter sdf1 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm ...
分类:
其他好文 时间:
2021-06-04 18:44:19
阅读次数:
0