摘要:
** 能用 foreach 遍历访问的对象需要实现 什么 接口或声明 什么 方法** 要使用 foreach 循环,对象必须实现 I Enumerable 接口或者声明 Get Enumerator 方法。 解释 IEnumerable 接口:这个接口定义了一个名为 GetEnumerator 的方 阅读全文
2024年8月28日 #
摘要:
单例模式 单例模式 public class Singleton { // 定义一个静态变量来保存类的实例 private static Singleton uniqueInstance; // 定义一个标识确保线程同步 private static readonly object locker = 阅读全文