摘要:
package cn.ALAN_CF.studyf009; /** * @author 15328 */ public enum Color { /**S*/ RED,GREEN, BLUE, } package cn.ALAN_CF.studyf009; /** * @author 15328 * 阅读全文
posted @ 2021-09-05 15:01
在天边偷看小天使
阅读(4)
评论(0)
推荐(0)
摘要:
package cn.ALAN_CF.studyf008; /** * @author 15328 */ public class Main { public static void main(String[] args) { HeaderMaster hm1 = HeaderMaster.getH 阅读全文
posted @ 2021-09-03 14:02
在天边偷看小天使
阅读(5)
评论(0)
推荐(0)
摘要:
package cn.ALAN_CF.studyf007; /** * @author 15328 */ public class Main { public static void main(String[] args) { extendsFoo stu0 = new extendsFoo("Al 阅读全文
posted @ 2021-09-03 13:42
在天边偷看小天使
阅读(7)
评论(0)
推荐(0)
摘要:
package cn.ALAN_CF.studyf002; /** * @author 15328 * protected修饰字段,保证这些字段能够被继承的子类访问 */ public class Person { protected String name; protected int age; 阅读全文
posted @ 2021-09-03 10:37
在天边偷看小天使
阅读(6)
评论(0)
推荐(0)
摘要:
输入两个链表,找出它们的第一个公共节点。 如下面的两个链表: 在节点 c1 开始相交。 示例 1: 输入:intersectVal = 8, listA = [4,1,8,4,5], listB = [5,0,1,8,4,5], skipA = 2, skipB = 3 输出:Reference o 阅读全文
posted @ 2021-09-01 17:47
在天边偷看小天使
阅读(10)
评论(0)
推荐(0)