public static void main(String args[]) { try { for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { i ...
分类:
编程语言 时间:
2021-05-24 12:36:02
阅读次数:
0
简介 接雨水. 简单思路 排序, 依次选择最高的柱子,所围城的池塘高度 code class Solution { public: struct zhuzi{ int height; int index; }; bool static cmp(const struct zhuzi &a, const ...
分类:
其他好文 时间:
2021-05-24 11:50:06
阅读次数:
0
import java.math.BigDecimal; public class Demo { public static void main(String[] args) { //这里尽量使用 BigDecimal(String str)的构造器 BigDecimal a = new BigDe ...
分类:
其他好文 时间:
2021-05-24 11:33:34
阅读次数:
0
Code package kb.algorithm; public class BubbleSort { public static void main(String[] args) { int[] a = new int[]{3, 6, 4, 9, 1, 7, 2, 5}; sort(a); St ...
分类:
编程语言 时间:
2021-05-24 11:14:04
阅读次数:
0
尝试做 ingress 实验,发现被畜生的墙拦住下载不了 mandatory.yaml & service-nodeport.yaml。 https://raw.githubusercontent.com/kubernetes/ingress-nginx/nginx-0.30.0/deploy/st ...
分类:
其他好文 时间:
2021-05-24 11:09:02
阅读次数:
0
ifdown br0 brctl delbr br0 rm ifcfg-br0 vim /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 ONBOOT=yes BOOTPROTO=static IPADDR=192.168.0.111 NET ...
分类:
其他好文 时间:
2021-05-24 10:45:19
阅读次数:
0
layout可以叠加效果 import java.awt.*; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; public class HomeWork { public static void mai ...
分类:
其他好文 时间:
2021-05-24 10:44:34
阅读次数:
0
小程序启动下载逻辑相关: https://game.weixin.qq.com/cgi-bin/h5/static/commlib/index.html 这个是实时的。 但是貌似本地也会存储,存储路径: /var/mobile/Containers/Data/Application/B1E7B553 ...
分类:
微信 时间:
2021-05-24 09:49:44
阅读次数:
0
使用组件 MongoDB.Driver 插入数据 class Program { static void Main(string[] args) { AddWorkerToMongo(); } static void AddWorkerToMongo() { var client = new Mon ...
分类:
数据库 时间:
2021-05-24 09:44:03
阅读次数:
0
一、介绍 Math包含执行基本数字运算的方法,如基本指数、对数、平方根和三角函数。所提供的都是静态方法,可以直接调用。 二、abs public static int abs(int a) abs方法用来获取参数a的绝对值 例子 public class MathTest { public stat ...
分类:
编程语言 时间:
2021-05-24 09:39:38
阅读次数:
0