摘要:
一、今日学习内容 1、第四章综合实例 1 package com.wuzy.entity; 2 public class Person { 3 private String name; 4 private int age; 5 public String getName() { 6 return n 阅读全文
摘要:
一、今日学习内容 1、类的属性 (1)属性:成员属性(全局变量),局部变量 成员属性:定义在类中,而在方法外,他的范围归整个类所共享。 1 public class Person{ 2 private String name; 3 private int age; 4 public static v 阅读全文
摘要:
一、今日学习内容 1、学习第三章:查找 (1)顺序查找 1 public class OrderFind { 2 public static void main(String[] args) { 3 int[] ary= {2,3,4,5,9,7,8}; 4 int find=5; 5 int co 阅读全文