2023年12月28日
摘要: 一、继承Thread类 Thread 类中创建线程最重要的两个方法为: public void start(); public void run(); 采用 Thread 类创建线程,用户只需要继承 Thread,覆盖 Thread 中的 run 方法,父类 Thread 中的 run 方法没有抛出 阅读全文
posted @ 2023-12-28 19:59 最美岁月 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 常用语句 git init # 初始化本地git仓库(创建新仓库) git config --global user.name "xxx" # 配置用户名 git config --global user.email "xxx@xxx.com" # 配置邮件 git config --global 阅读全文
posted @ 2023-12-28 13:32 最美岁月 阅读(118) 评论(0) 推荐(0) 编辑