在项目中遇到读取以json格式存储的配置文件,为了方便操作,将文件内容读取出来并转换为json对象,本文使用的是fastjson import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import org. ...
分类:
编程语言 时间:
2021-05-24 04:37:23
阅读次数:
0
思路,采取map存储每个值,键为该数字,值为次数,大余一次就弹出 var findRepeatNumber = function(nums) { let map = new Map(); for(let i = 0; i < nums.length; i ++){ if(map.has(nums[i ...
分类:
编程语言 时间:
2021-05-24 04:24:08
阅读次数:
0
public class ThreadDemo { //1.定义一个静态变量,因为静态变量是线程共享的 public static int count = 0; //2.定义一个自增的方法 public static void add() { try { Thread.sleep(1);//让程序睡 ...
分类:
编程语言 时间:
2021-05-24 02:11:00
阅读次数:
0
Ibex 是什么? Ibex was initially developed as part of the PULP platform under the name "Zero-riscy", and has been contributed to lowRISC who maintains it ...
分类:
其他好文 时间:
2021-05-23 23:32:05
阅读次数:
0
You are given a 0-indexed string s that has lowercase English letters in its even indices and digits in its odd indices. There is a function shift(c, ...
分类:
其他好文 时间:
2021-05-04 15:31:41
阅读次数:
0
java.net.UnknownHostException: unknown host:xxxx异常解决办法 java.net.UnknownHostException: unknown host:xxxx异常解决办法 参考文章: (1)java.net.UnknownHostException: ...
分类:
编程语言 时间:
2021-05-03 12:54:47
阅读次数:
0
Prefix and Suffix Search (H) 题目 Design a special dictionary which has some words and allows you to search the words in it by a prefix and a suffix. Im ...
分类:
其他好文 时间:
2021-05-03 12:54:25
阅读次数:
0
Cookie&Session Cookie 1. 什么是Cookie? Cookie 是一个保存在客户机中的简单的文本文件, 这个文件与特定的 Web文档关联在一起, 保存了该客户机访问这个Web 文档时的信息, 当客户机再次访问这个 Web 文档时这些信息可供该文档使用;这些信息以键值对的形式保存 ...
分类:
编程语言 时间:
2021-05-03 12:49:31
阅读次数:
0
异常处理机制 抛出异常 捕获异常 五个关键词 try、catch、finally、throw、throws package com.exception; public class Test { public static void main(String[] args) { try { new Te ...
分类:
其他好文 时间:
2021-05-03 12:20:05
阅读次数:
0
自定义异常 用户自定义异常类,只需继承Exception类 步骤 创建自定义异常类 在方法中通过throw关键词抛出异常对象 如果在当前抛出异常的方法中处理异常,可以使用try-catch语句捕获并处理;否则在方法的声明处通过throws关键字指明要抛出给方法调用者的异常,继续执行下一步操作 在出现 ...
分类:
其他好文 时间:
2021-05-03 12:18:49
阅读次数:
0