摘要: Git学习 1.git --config ​ 1.git config -l 等同于 git config --list 查看本地配置 2.git config --system --list 查看系统配置 ​ 本质为Git(git安装目录)\mingw64\etc\gitconfig 3.git 阅读全文
posted @ 2021-03-11 23:23 陈_MJ 阅读(82) 评论(0) 推荐(0)
摘要: Maven更换国内源 1.更换阿里源 ​ 1.找到自己的Maven目录 ​ 2.打开conf下的setting.xml ​ 3.在 mirrors添加 <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apach 阅读全文
posted @ 2021-03-11 10:07 陈_MJ 阅读(1054) 评论(0) 推荐(1)
摘要: javascrtip学习记录 使用规范 <script type="text/javascript" src="js01.js"></script> <!--引入js--> <script type="text/javascript"> <!-- 直接写--> alert("javascript h 阅读全文
posted @ 2020-12-23 14:18 陈_MJ 阅读(223) 评论(0) 推荐(0)
摘要: public class test8 { public static void main(String args[]){ //通过一个类可以实列化N个对象 //实列话对象的语法:new 类名(); //new是java语言中的一个运算符 //new运算符的作用是创建对象,在JVM堆内存当中开辟新的内 阅读全文
posted @ 2020-11-17 17:23 陈_MJ 阅读(57) 评论(0) 推荐(0)
摘要: public class test4 { public static void main(String args[]) { /** * 方法定义规则 * 修饰 类型 方法名(参数){ * 要完成的动作 * } * 调用方法 * 类名.方法名(参数) (参数必须与定义的保持一致否则报错) * void 阅读全文
posted @ 2020-11-15 15:31 陈_MJ 阅读(76) 评论(0) 推荐(0)
摘要: 打印乘法口诀表 public class TestVar11{ public static void main(String[] args){ int i,j; for(i=1;i<=9;i++){ for(j=1;j<=i;j++){ System.out.print(j + "*" + i +" 阅读全文
posted @ 2020-11-01 09:53 陈_MJ 阅读(55) 评论(0) 推荐(0)