ちょうきょう666

导航

2020年5月29日

unityUI拖拽

摘要: using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEngine.EventSystems; public class DrawPanel : MonoBehaviour ,ID 阅读全文

posted @ 2020-05-29 15:38 ちょうきょう666 阅读(130) 评论(0) 推荐(0) 编辑

Java泛型

摘要: 泛型分为类泛型,方法泛型,接口泛型 类泛型:public class Lei<T> {}; 方法泛型 public<T> void ***(){}; 接口泛型 Interface ***<T> {}; 泛型的使用:类的实现 public class ShiXian01 implements inte 阅读全文

posted @ 2020-05-29 11:05 ちょうきょう666 阅读(98) 评论(0) 推荐(0) 编辑

java集合

摘要: Map集合的两种遍历方式:Map集合无序 public class Map1 {public static void main(String[] args) { Map<String, String> map=new HashMap(); map.put("12", "ss"); map.put(" 阅读全文

posted @ 2020-05-29 11:01 ちょうきょう666 阅读(119) 评论(0) 推荐(0) 编辑