Static Agent in Agent Mode

Static proxy mode What is a static proxy? The proxy model, as its name implies, is to find a class that can proxy its own work to complete the work of the target class. This proxy class can verify and finish the work while completing the work. Take selling used cars as an example. When your time is limited, you can find an agent to help yo ...

Posted by unstable_geek on Sun, 26 May 2019 23:47:37 +0200

android unit testing

In fact, every time you create a new andorid project, you will automatically import JUnit. What is this? Many times I feel that this thing is useless, and I delete it inadvertently, until I see Clean Code, I realize that this thing seems very important, so I start to learn by myself. The following basic steps are recorded: 1 (model) build.g ...

Posted by keith73 on Mon, 20 May 2019 22:02:48 +0200

The Foundation of Programming Language--Making JavaIO

Keyword: IO Foundation, JUnit Life Cycle, Byte Stream, Character Stream, Character Coding, Object Stream, Serialization, Deserialization Java I/O Streams are a set of sequential, starting and ending bytes. It is the general name and abstraction of data transmission between device files. Device files involved in IO include files, consoles, n ...

Posted by Elusid on Sun, 19 May 2019 15:09:18 +0200

Using YANG-UTIL to bring classes into ODL can't load BUG

ODL is based on MDSL, whose model is defined in YAGN language, and the class generated by Yang-tool is used in programming. The data stored in ODL's DataStore needs to be serialized and deserialized. The serialized deserialized code is generated dynamically through Javassist. BindingToNormalizedNodecodec.java public <T ...

Posted by nominator on Sun, 12 May 2019 07:06:22 +0200

Gradle usage and multi-module creation in Idea.md

[TOC] Gradle use Gradle is a project automation construction tool based on the concepts of Apache Ant and Apache Maven. It uses a Groovy-based domain-specific language to declare project settings, rather than traditional XML. Wiki Automatically Processing Packet Dependency Relations - The Concept from Maven Repos Automated dispo ...

Posted by jcd on Tue, 07 May 2019 13:40:04 +0200