Variable & basic data type
variable
Specifies the variable type. If it is not assigned, the default value is used. string is empty by default, and int and floating point number are 0 by default
Automatically judge the type according to the value
Omit var, note: the variable on the left of = should be undeclared
var i int //Type 1
i = 10
var num = 10.36 //Automati ...
Posted on Mon, 06 Dec 2021 21:19:05 -0500 by gammaster
JVM -- memory model
When senior Android engineers want to do performance optimization, NDK, soundness of design architecture, they must have a certain understanding of JVM. The more technology goes up, the more we need to understand the underlying. Computer principle, c/c + + language, JVM principle, data structure and algorithm are indispensable. In the process o ...
Posted on Mon, 06 Dec 2021 21:10:03 -0500 by the_crazyman
Proxy mode for design mode
Basic Introduction
Provides a surrogate for an object to control access to it. That is, to access the target object through a proxy object, the advantage is that on the basis of the target object, additional functional operations can be enhanced, that is, to extend the function of the target object.Proxied objects can be remote objects, expens ...
Posted on Mon, 06 Dec 2021 21:06:46 -0500 by zc1
After using PageHelper for so long, do you know the principle and steps of native paging query
1, Overview of paging queryPagination query displays a lot of data in sections on the page, and displays the user-defined number of rows on each page. It can improve the user experience and reduce the risk of one-time loading and memory overflow.1.1. Paging query classification1.1.1 true pagingQuery data from the database every time you turn th ...
Posted on Mon, 06 Dec 2021 21:03:18 -0500 by gateUK
Kubernetes DNS system
The DNS service is not requiredIt is usually installed as an add-onKube DNS, CoreDNS
process
After the DNS application of Kubernetes is deployed, a service Cluster IP will be exposedAfter the DNS service Cluster IP is assigned, the system (generally refers to the installer) will configure Kubelet with the – cluster DNS = startup paramet ...
Posted on Mon, 06 Dec 2021 20:32:52 -0500 by gli
Databend built in scalar function development guide
Original text: https://databend.rs/development/how-to-write-scalar-functions/
What is a scalar function? ¶
Scalar functions (sometimes referred to as user-defined functions / UDFs) return a single value for each record, rather than as a result SET, and can be used in most places in queries or SET statements, except for the ...
Posted on Mon, 06 Dec 2021 20:16:35 -0500 by PHP'er
The fifth day of Java big data learning -- while do while loop array method overload bubble sorting
review
structure
Sequential structureBranch structure ifLoop structure forSelect structure switch
variable
Member variablelocal variable
The Fifth Day
while Loop
Structure: while (loop condition){ Circulatory body; }
do-while Loop
Structure: do{ Circulatory body; }while (cycle condition);
Differences between the three cycles
fo ...
Posted on Mon, 06 Dec 2021 20:04:37 -0500 by hesketh
Getting started with Element UI
Author Gitee address https://gitee.com/thciweicloud Author project Bread blog , a front-end and back-end separation blog system of microservice architecture.
element-ui
Is element UI a UI component library developed by the team
Tips
When we use some components, we often need v-model binding values to select or display them. When w ...
Posted on Mon, 06 Dec 2021 20:03:51 -0500 by ditusade
css special operation and effect
(1) How to write spaces in CSS<view class="uni-flex uni-column" style="text-align: left;">
<text>close Grid:{{qualifiedQuantity}}</text>
<text>unqualified:{{unqualifiedQuantity}}</text>
</view>Full angle space(2) css text vertical display<view>
<button style="align-self: center;w ...
Posted on Mon, 06 Dec 2021 20:01:06 -0500 by Remote4ever
URLDNS deserialization chain
The deserialization of java is probably caused by the readObject method, but the rce caused by the process is still very confused.
But learning directly from CC chain is not very friendly to novices. So today, learn about the deserialization process from the simplest urldngadget in ysoserial.jar.
The URL.class used this time is provided by jdk ...
Posted on Mon, 06 Dec 2021 19:53:35 -0500 by blkraven