随笔分类 -  java

上一页 1 ··· 5 6 7 8 9
对java学习,及资料; 包含javaSE、javaWEB、javaEE、mybatis、spring、springMVC、springCloud
摘要:package operator; public class Demo04 { public static void main(String[] args) { text(); text2(); } public static void text() { int a = 10; int b = 20 阅读全文
posted @ 2021-07-28 13:52 阿向向 阅读(201) 评论(0) 推荐(0)
摘要:package operator; public class Demo03 { public static void main(String[] args) { text(); text2(); text3(); } public static void text3(){ //位运算 /* A = 阅读全文
posted @ 2021-07-28 13:51 阿向向 阅读(37) 评论(0) 推荐(0)
摘要:package operator; public class Demo02 { public static void main(String[] args) { text0(); text(); text2(); text3(); } public static void text3(){ bool 阅读全文
posted @ 2021-07-28 13:50 阿向向 阅读(466) 评论(0) 推荐(0)
摘要:package operator; public class Demo01 { public static void main(String[] args) { int a=10; int b=20; int c=30; int d=40; System.out.println(a+b);//30 阅读全文
posted @ 2021-07-28 13:49 阿向向 阅读(433) 评论(0) 推荐(0)
摘要:package base; public class Demo01 { String name; int age; final static Double Pi=3.1415962; final Double score=99.0; public static void main(String[] 阅读全文
posted @ 2021-07-28 13:47 阿向向 阅读(34) 评论(0) 推荐(0)
摘要:1,新建ThymeleafContorllor类 package com.xiang.controller; import com.xiang.model.User; import org.springframework.stereotype.Controller; import org.sprin 阅读全文
posted @ 2021-06-16 15:46 阿向向 阅读(441) 评论(0) 推荐(0)
摘要:1,新建ThymeleafContorllor类 package com.xiang.controller; import com.xiang.model.User; import org.springframework.stereotype.Controller; import org.sprin 阅读全文
posted @ 2021-06-16 08:37 阿向向 阅读(54) 评论(0) 推荐(0)
摘要:1,准备conreoller包、新建HomeController类; package com.xiang.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframe 阅读全文
posted @ 2021-06-08 22:34 阿向向 阅读(69) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-05-23 00:20 阿向向 阅读(27) 评论(0) 推荐(0)

上一页 1 ··· 5 6 7 8 9