(JAVA)获取对象
生活随笔
收集整理的這篇文章主要介紹了
(JAVA)获取对象
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Student.java
package cn.book.objectarr;/*** @author zhangyu* @date 2021年08月22日 6:57 下午*/
public class Student {private String name;private int age;public Student(){}public Student(String name,int age){this.age = age;this.name = name;}public String getName() {return name;}public void setName(String name) {this.name = name;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}public String toString(){return "Student"+name+age;}}
主類
package cn.book.objectarr;/*** @author zhangyu* @date 2021年08月22日 8:12 下午*/ public class ObjectArrayDemo {public static void main(String[] args) {Student[] st = {new Student("張三",18),new Student("李四",34)};for(int x = 0 ;x < st.length;x++){System.out.println(st[x]);}} }總結
以上是生活随笔為你收集整理的(JAVA)获取对象的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: windows 10下搭建pyspark
- 下一篇: Go语言 基础教程 实战