摘要:
可以显示文本信息 ListView 的使用方法可以概括为: 1、构造数据 2、获取Adapter 3、Adapter绑定ListView ListView lv_main = findViewById(R.id.lv_main); String [] data = new String[100]; 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
创建用户/设置密码/删除用户 查看用户信息 usermod 阅读全文
摘要:
阅读全文
摘要:
原题点这里 统计只出现一次的数字 这个很容易想到用 map或set做。 public int singleNumber(int[] nums) { int n = nums.length; HashSet<Integer> record = new HashSet<>(); for(int i=0; 阅读全文