摘要:
bool pipeikuohao(const char* str,int length){ if (str == nullptr || length <= 1) return false; int a = 0; int left = 0; int right = 0; bool findfirstr 阅读全文
摘要:
每个不同的T,都会生成一份不同的副本适合不同类型,需要缓存一份数据 的场景,效率高, 第一次进来都会读取构造函数中创建值,而第二次进来就不会传进入构造函数中创建值,,因为已经缓存好了数据 public static class PropertyStr<T> where T:class { priva 阅读全文