Oppo java interview questions, java calls the client of the micro service interface

preface Whether students or people who have worked, I think they all have the same dream: enter a big factory! Seeing that 2021 is half past, how can we overtake at the corner in the second half of the year and enter the dream factory First of all, you should know that now, whether large or small companies, the interview investigation is not ...

Added by kevin_newbie on Thu, 10 Feb 2022 18:52:19 +0200

Summary of front-end pen test questions in winter 2020

Original address: Some great interview questions [4] Recently, I interviewed some companies and got some offer s. I don't record concept questions, but only coding questions. In their spare time, they can do these problems and practice their hands. Graffiti intelligence will recruit a large number of people in 2021. There are vacancies i ...

Added by mindfield on Thu, 10 Feb 2022 09:39:58 +0200

Singleton pattern of design patterns you can understand

preface *** The author writes a blog mainly to summarize the technology and deepen his understanding of it. If there are any mistakes, please help point out them. Singleton mode 1. Definitions Definition of Singleton pattern: a pattern in which a class has only one instance and the class can create the instance itself. 2. Features ...

Added by PurpleMonkey on Wed, 09 Feb 2022 16:11:36 +0200

Uncover the essential logic of java commands

preface In daily coding, with the support of ide, we rarely execute java XXX command directly on the command line to start a project. However, have we ever thought about what is done behind a simple java command? Let's look at the following simple questions 1. The Java command can be followed by many parameters. How are these parameters resol ...

Added by uidzer0b on Tue, 08 Feb 2022 02:12:45 +0200

Basic notes of Flutter

Common properties and methods in List: /* List Common attributes and methods: Common attributes: length length reversed Flip isEmpty Is it empty isNotEmpty Is it not empty Common methods: add increase addAll Splice array indexOf Find the ...

Added by simpli on Tue, 08 Feb 2022 02:03:28 +0200

One breath took the offer of 9 companies, the exclusive launch of the whole network!

background In the development process of using fluent in depth, we encountered serious business code coupling and poor code maintainability, such as mud. We need a unified application framework to get rid of the current development dilemma, which is also a virgin land vacant in the field of fluent. Fish Redux is an upper application framework ...

Added by whizzykid on Mon, 07 Feb 2022 14:23:12 +0200

The difference between vue2 and vue3 bidirectional data binding

The new responsive mechanism adopts ProxyApi of ES6 and abandons object defineProperty() Problems in Vue2 bidirectional data binding About objects Vue cannot detect the addition or removal of properties. Because Vue will perform getter/setter conversion on the property when initializing the instance, the property must exist on the data obj ...

Added by hsn on Mon, 07 Feb 2022 02:34:10 +0200

Use of keep alive of vue

Concept: Keep alive is a built-in component of Vue. When it wraps dynamic components, it caches inactive component instances instead of destroying them. Similar to transition, keep alive is an abstract component: it does not render itself as a DOM element or appear in the parent component chain. effect: In the process of component switching, ...

Added by blackmamba on Mon, 07 Feb 2022 02:25:53 +0200

CodeTop supplementary question 1 Sort odd ascending even descending linked list

Topic source Supplementary question 1 Sort odd ascending even descending linked list Title details This article is a supplement to the enterprise question bank CodeTop[1], summarizing those high-frequency interview questions that can not be found on Leetcode. Let's take a look at the original narration of several face scriptures In the linke ...

Added by EnDee321 on Sun, 06 Feb 2022 05:16:50 +0200

Java knowledge needed for work (JUC Lock Learning Paper)

JUC is a part of my job that I don't use very much, but I often get asked about it in a helpless interview, so I'll learn about JUC today. JUC is all called Java. Util. The concurrent package is a toolkit for Java, so why is JUC a frequent question for interviews? Because JUC includes multithreading, atomicity, locks and other heavy content, i ...

Added by UQ13A on Sat, 05 Feb 2022 19:04:49 +0200