1. Final keyword The final keyword stands for “final”, “immutable” 1.1 modifying variables Member variable – represents that the current […]
Tag: Division
Dry goods: I have developed a starter. How can I easily embed it into the docking side using different versions of spring boot framework
background Recently, according to the needs of the company, a two-party library package shared within the company has been developed. […]
An example of image segmentation by projection in python (1)
Projection method is often used for image threshold segmentation. I don’t want to talk much about it. Now it’s implemented […]
Java object oriented inner class
Inner class Inner class is to define another class inside a class. For example, class a defines a class […]
Tensorflow2.0: instances of merging and splitting tensors
** one tf.concat () function – Merge ** In [2]: a = tf.ones([4,35,8]) In [3]: b = tf.ones([2,35,8]) In [4]: […]
Design mode – 17) combination mode
abstract class Component { protected string name; public Component(string name) { this.name = name; } public abstract void Add(Component c); […]