###方法1:同步代码块 synchronized ( 对象){ // 需要被同步的代码; } class Window extends Thread{ // private int ticket=100;//这样会有300张票 private static int ticket=100;//只有1 ...
分类:
编程语言 时间:
2021-04-19 14:44:35
阅读次数:
0
时间工具类 import java.time.*; import java.time.format.DateTimeFormatter; import java.util.Date; public class TimeUtil { /** * 北京时间 */ private static final ...
分类:
编程语言 时间:
2021-04-13 12:01:10
阅读次数:
0
ackage chapter; import java.util.ArrayList; import java.util.List; import java.util.Stack; public class Master { private static String[] op = { "+", " ...
分类:
其他好文 时间:
2021-04-12 12:51:46
阅读次数:
0
四则运算编程练习 需求分析:根据用户输入,随机生成相应个数的表达式。 核心代码: step1:生成表达式并存入StringBuffer中 1 private static String[] op = { "+", "-", "*", "/" }; 2 /** 3 * 生成算数表达式 4 * 5 * ...
分类:
其他好文 时间:
2021-04-12 12:39:18
阅读次数:
0
一、文本与Base64 1、文本转Base64字符串 private static string StrToBase64(string str) { byte[] b = Encoding.Default.GetBytes(str); //转成 Base64 形式的 System.String st ...
public class DistanceRad { private static double EARTH_RADIUS = 6378.137;// 单位千米 /** * 角度弧度计算公式 rad:(). <br/> * <p> * 360度=2π π=Math.PI * <p> * x度 = x ...
分类:
编程语言 时间:
2021-04-02 13:00:40
阅读次数:
0
总经理说:不管将来干什么,一定要夯实基础,一通百通,融会贯通。我觉得现在不管干着什么,基础也要学而时习之。//冒泡排序private static void sort(int[] arr) { for (int i = 0; i < arr.length-1; i++) {//5、因为两个元素比较一 ...
分类:
编程语言 时间:
2021-04-01 13:43:24
阅读次数:
0
CS DES任意长度密钥加密 private static string Encrypt2(string str, string sKey) { string s = ""; using (System.Security.Cryptography.DESCryptoServiceProvider d ...
分类:
其他好文 时间:
2021-04-01 12:53:38
阅读次数:
0
直接上代码: 需要引用using Microsoft.Extensions.Configuration; public class AppSettings { /// <summary> /// 配置文件的根节点 /// </summary> private static readonly ICon ...
分类:
移动开发 时间:
2021-03-26 15:23:11
阅读次数:
0
@PostConstruct注解的方法在项目启动的时候执行这个方法,也就是在spring容器启动的时候执行,可以加载一些需要提前启动需要或者 @Component public class LogUtil { private static volatile LogUtil instance; @Au ...
分类:
其他好文 时间:
2021-03-26 15:19:40
阅读次数:
0