Now I will introduce a way to compress a text. When we are confronted with numerous data, and the data has a similar structure, we can take advantage of the feature to improve the performance of compression. In most of times, we could take the method…
Advantage Unlike constructors, they have names. (BigInteger.probablePrime vs BigInteger(int, int, Random) They are not required to create a new object each time they're invoked(Flyweight pattern). This ensures that a.equals(b) if and only if a = = b.…
public static void speckOnWin7(string text) {    //洪丰写的,转载请注明 try { string lsSource = ""; //if (File.Exists(Application.StartupPath + "\\Error.txt")) // lsSource = File.ReadAllText(Application.StartupPath + "\\Error.txt"); //…
考虑使用静态工厂方法来替代构造方法, 这样的做的好处有四点. 1. 更好的表意 有的构造方法实际上有特殊的含义, 使用静态工厂方法能更好的表达出他的意思. 例如 BigInteger(int, int, Random) , 它返回一个可能是素数的 BigInteger. 使用工厂方法 BigInteger.probablePrime 可以更好的表达出他的意思 2. 无需每次创建新对象 在某些场景下, 我们无需每次都创建新的对象, 这样就可以使用静态工厂方法替代构造方法, 例如 Boolean.v…
获取类的实例的方法有很多种,在这很多种方法中,它们各有优缺,各有特点.这里,只介绍2中方法 1.使用构造方法 public class Person { private String sex; /** * <构造函数> */ public Person(String sex) { this.sex = sex; System.out.println("this is constructor method"); } } 调用如下: public static void mai…
获得一个类的实例的传统方法是公共的构造方法,还可以提供一个公共的静态工厂方法(一个返回值为该类实例的简单静态方法), 例如Boolean(boolean 的封装类) public static Boolean valueOf(boolean b) { return b ? Boolean.TRUE : Boolean.FALSE; } 此方法将boolean的原始值转变成Boolean对象的引用. 注意:这里的静态工厂方法与设计模式中的工厂方法不一样.静态工厂方法有优缺点. 优点:①与构造方法相…
看的代码越多,写的代码越多,就越是享受这些字符,终于渐渐懂得了那种传闻中的成就感,特别是自己从看不懂然后一步一步学,一个代码一个代码地敲,最后哪怕只是完成了一个小功能,也都是特别自豪的!这种自豪不用告诉别人,自己心里就是特别满足! 代码最美的地方就在于所有的不可能都是有可能的...... 显示的功能: 1.通过选择不同的按钮,传递对应的数据到对应的窗口去: 2.选择其他,可以自己输入新的数据在传递. 传递数据,最主要的就是涉及到了公共变量,开始设定一个公共变量,然后大家都用这个数据,这样传递的时…
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Dictionary键值对 { class Program { static void Main(string[] args) { DicSample1(); DicSample2(); DicSample3(); DicSample4(); Console.Read(); } //1.用法1: 常规用 /…
原文地址:http://www.blackbeltcoder.com/Articles/strings/convert-html-to-text  Download Source Code Introduction Recently, I wrote an article that presented code to convert plain text to HTML. So it occurred to me that it might be useful to publish some c…
/// <summary> /// 将获取的formData存入字典数组 /// </summary> public static Dictionary<String, String> GetFormData(string formData) { try { //将参数存入字符数组 String[] dataArry = formData.Split('&'); //定义字典,将参数按照键值对存入字典中 Dictionary<String, String&…