Java8 date time API, Java advanced multithreading interview
plusNanos(int offset): increases the specified nanosecond
Reduce related methods
minusYears(int offset): decrease the specified year minusMonths(int offset): decrease the specified month minusWeeks(int offset): decreases the specified week minusDates(int offset): decrease the specified date minusHours(int offset): decrease the specified ...
Added by camdenite on Fri, 17 Dec 2021 00:17:09 +0200
2021 new wave of programmer job hopping season, Java exception interview questions (2020 latest version)
Definition: exceptions in Exception except RuntimeException and its subclasses.
Features: the Java compiler will check it. If such an exception occurs in the program, For example, ClassNotFoundException (the specified class exception is not found) and IOException (IO stream exception), either declare and throw it through throws or catch it thr ...
Added by loureiro on Thu, 16 Dec 2021 23:52:14 +0200
Python example code for generating Jiugongge pictures
1, Foreword
You should have seen in the circle of friends that a picture is displayed in the form of nine squares. The effect is roughly as follows:
To achieve the above effect is very simple, we only need to intercept nine areas of the image. Today we will take you to use Python to realize the generation of Jiugong grid pictures. Before st ...
Added by Iceman18 on Thu, 16 Dec 2021 19:27:59 +0200
java foundation -- review the old and know the new series 1
catalogue
preface
Cache pool (constant pool)
1. Prove the existence of cache pool
2. Cache value range
Implicit type conversion
keyword
final
static
1. Static variable
2. Static inner class
this,super
Access modifier
java8 features
abnormal
Java collection (container)
1,List, Set, Queue, Map
preface
This series focuses on t ...
Added by robindean on Thu, 16 Dec 2021 15:15:05 +0200
The boss teaches you to analyze the growth trend of e-quotient marketing with Python
Introduction: today I will bring you an e-commerce data analysis case. I sorted it out and shared it with you in the form of notes. The background of the case is that the overall sales of an e-commerce have been rising for several consecutive years, but the growth rate has slowed down in recent years. It is necessary to find effe ...
Added by sastro on Thu, 16 Dec 2021 12:12:56 +0200
[knowledge points] OkHttp principle 8 questions
prefaceOkHttp can be said to be the most common network request framework in Android development. OkHttp is easy to use, extensible and powerful. OkHttp source code and principle are also frequent visitors in the interview However, OKHttp has a lot of source code content. If you want to learn its source code, you are often confused and can't g ...
Added by tnkannan on Thu, 16 Dec 2021 09:49:08 +0200
HashMap source code analysis, Java interview knowledge points
*/
public HashMap(int initialCapacity, float loadFactor) {
if (initialCapacity < 0)
throw new IllegalArgumentException("Illegal initial capacity: " +
initialCapacity);
if (initialCapacity > MAXIMUM_CAPACITY)
initialCapacity = MAXIMUM_CAPACITY;
if (loadFactor <= 0 || Float.isNaN(load ...
Added by cmay4 on Thu, 16 Dec 2021 07:38:45 +0200
HttpClient tools, 2021 Tencent Java advanced interview questions and answers
/**
* Send get request; With request parameters
*
* @param url Request address
* @param params Request parameter set
* @return
* @throws Exception
*/
public static HttpClientResult doGet(String url, Map<String, String> params) throws Exception {
return doGet(url, null, params);
}
/**
* Send get request; With reques ...
Added by krs10_s on Thu, 16 Dec 2021 07:13:17 +0200
Master these core knowledge points of SQL, go out and boast and don't worry anymore
Chapter 1 Introduction to SQL1.1. What is sqlSQL: Structure Query Language. (Structured Query Language), operate the database through SQL (operation database, operation table, operation data)SQL was determined as the American Standard of relational database language by American National Bureau of standards (ANSI), and later adopted as the inte ...
Added by Simbachips on Thu, 16 Dec 2021 00:05:22 +0200
Java Web Course Design - student information management system (Jsp, Java interview manual pdf
#User table
create table user(
id int auto_increment primary key,
username nvarchar(20) null,
password nvarchar(20) null,
name nvarchar(20) null,
gender nchar(10) null,
age int null,
address nvarchar(20) null,
phone nvarchar(11) unique null,
email nvarchar(30) null
);
#Student list
create table student(
id int auto_increment prim ...
Added by xeonman13 on Wed, 15 Dec 2021 22:21:29 +0200