首页 > 代码库 > 匿名对象demo
匿名对象demo
package cn.xuexi; /* * 写了一个匿名对象的一个demo * 匿名对象: 没有明确给出对象的名称,一般匿名对象只能用一次,而且匿名对象只能在堆内存中开辟空间,而不存在栈内存的引用 * new persontt("hiuji",54).tellme(); */ public class LiMingDemo2 { public static void main(String[] args) { new persontt("hiuji",54).tellme(); // 匿名对象 } } class persontt{ private String name; private int age; public void setname(String name) { this.name = name; } public void setage(int age) { this.age = age; } public String getname() { return name; } public int getage() { return age; } public persontt(String name,int age) { this.setname(name); //为类属性name 赋值 this.setage(age); //为类属性 age 赋值 } public void tellme() { System.out.println(this.getname()+this.getage()); } }
匿名对象demo
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。