c language_ Array (super detailed analysis, easy to master)

Catalogue 1. Creation and initialization of array 1.1 creation of array 1.2 initialization of array 1.2.1 initialization of one-dimensional array 1.2.1 initialization of two-dimensional array 2. Some usage methods of array 2.1 calculating array size 2.2 output all contents of the array 3. Storage of array in memory 4. Array out of bou ...

Posted by JesperBisgaard on Sat, 08 Jan 2022 10:41:10 +0100

Raspberry pie record (for memo query)

Pico | raspberry pie Laboratory (nxez.com) Download the desired image The website is still very good, and there are some tutorials to facilitate query and learning Relevant tools are provided on the page, which can be downloaded easily. Of course, I still use the old tools, which are easy to use. I don't want to change hhh   First, find ...

Posted by ihsreal on Wed, 05 Jan 2022 13:11:54 +0100

AvalonEdit of WPF implements MVVM bidirectional binding

Introduction to AvalonEdit AvalonEdit is a code display control developed based on WPF. By default, it supports keyword highlighting in many different languages, and you can customize the highlighting configuration. Therefore, you can quickly develop the code editor you want through AvalonEdit. Install via Nuget AvalonEdit And add controls to t ...

Posted by BrianPeiris on Wed, 05 Jan 2022 12:42:42 +0100

WPF-MVVMLight framework learning -- using MVVMLight

This is just my study notes. Please refer to the original author for your study. Refer to learning video: https://www.bilibili.com/video/av40886206/ Refer to learning blog: https://www.cnblogs.com/wzh2010/p/6285990.html   1. Use MVVMLight in the project [1.1] search for MVVMLight in Nuget   [1.2] after adding, there will be more files After co ...

Posted by roel_v on Mon, 03 Jan 2022 03:10:06 +0100

Learn JAVA reflection learning together (super detailed)

1 what is reflection? Reflection is one of the features of Java programming language. It allows running Java programs to check themselves, or "self-examination", also known as "introspection". Reflection is so powerful that it can even directly manipulate the private properties of the program. We all learned a concept earl ...

Posted by ghjr on Wed, 29 Dec 2021 17:03:40 +0100

Static agent, JDK dynamic agent, CGLIB dynamic agent

catalogue I What is an agent II Code implementation agent I Static proxy II JDK dynamic agent III CGLIB dynamic proxy I What is an agent Imagine this scenario: we want to invite Jay to perform, but Jay only sings and doesn't want to do other trivial business. What else should we do at this time? At this time, of course, we need to find ...

Posted by julzk on Sun, 26 Dec 2021 02:20:37 +0100

Generic notes

1, What is generics? Generic: when a class is defined, it does not set the data type for the properties and methods (return values and parameters) in the class. When creating the object of the class, it specifies the corresponding data type. 2, Why use generics? Example: define a point class, attribute: x coordinate and y coordinate Require ...

Posted by edsmith on Thu, 23 Dec 2021 03:58:55 +0100

Play Flash animation in WPF

Some teachers asked: can WPF play Flash animation? sure. However, due to Microsoft's "selfishness", WPF itself does not directly support the playback of Flash animation, so it needs to do some "design". The following is an example (embedded WPF window playback). 1. First, build the project in VS2010. After opening VS2010, s ...

Posted by dragongamer on Thu, 16 Dec 2021 08:21:15 +0100

Jilin University Chaoxing MOOC learning pass high level language programming C + + experiment 06 recursive programming (level 2021)

catalogue  1. Maximum common factor 2.Hermite polynomial 3. Ackerman function 4. Arrangement and combination 5. Maximum element 6. Array reverse order 7. Decimal conversion to arbitrary base 8. Sequential search  1. Maximum common factor Title No.: Exp06-Basic04 Title: maximum common factor Title Description: ...

Posted by shivam0101 on Wed, 15 Dec 2021 05:11:37 +0100

Operation of jQuery property

catalogue 1, Operation properties 1. attr(): method 2. prop(): method 2, css properties 1. Set css attribute 2. Get css attribute 3. Add, delete, alternate add delete styles 3, Sets / gets the width and height attributes of the element 1. Obtain width 2. Set width 4, Set get element content 1. Gets / sets the HTML code of the elem ...

Posted by jdnet on Tue, 14 Dec 2021 13:46:30 +0100