强悍の绝巴哈

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2022年12月26日

摘要: #单例 public class Singleton<T> where T : new() { private static T instance; public static T Instance { get { if (instance == null) { instance = new T() 阅读全文
posted @ 2022-12-26 23:50 强悍の绝巴哈 阅读(50) 评论(0) 推荐(0) 编辑

摘要: git init // 生成一个.git子目录,产生一个仓库 git status //查看当前目录下所有文件的状态 git add. //将该目录下的所有文件提交到暂存区 git add 文件名 //将该目录下指定的文件提交到暂存区 git commit -m "为这次提交取一个名字" //将暂存 阅读全文
posted @ 2022-12-26 22:13 强悍の绝巴哈 阅读(14) 评论(0) 推荐(0) 编辑