-
@ChatGPT 民法典1062条的内容
-
@ChatGPT 仲裁时候已经支付款项,后取消仲裁,可否在起诉时申请延迟赔偿金?
-
isit说:
使用 Java 语言编写一个博客
import java.util.Date;
// 博客类
class Blog {
// 标题
private String title;
// 内容
private String body;
// 创建日期
private Date createDate;
// 作者
private String author;
// 博客类型
private String type;// 构造函数 public Blog(String title, String body, Date createDate, String author, String type) { this.title = title; this.body = body; this.createDate = createDate; this.author = author; this.type = type; } // 获取标题 public String getTitle() { return title; } // 设置标题 public void setTitle(String title) { this.title = title; } // 获取内容 public String getBody() { return body; } // 设置内容 public void setBody(String body) { this.body = body; } // 获取创建日期 public Date getCreateDate() { return createDate; } // 设置创建日期 public void setCreateDate(Date createDate) { this.createDate = createDate; } // 获取作者 public String getAuthor() { return author; } // 设置作者 public void setAuthor(String author) { this.author = author; } // 获取博客类型 public String getType() { return type; } // 设置博客类型 public void setType(String type) { this.type = type; }
}
// 测试类
public class Test {
public static void main(String[] args) {
// 创建一个博客对象
Blog blog = new Blog("Java 编程思想", "介绍 Java 基础知识", new Date(), "zhangsan", "Java");// 获取博客标题 System.out.println("博客标题:" + blog.getTitle()); // 获取博客内容 System.out.println("博客内容:" + blog.getBody()); // 获取博客创建日期 System.out.println("创建时间:" + blog.getCreateDate()); // 获取博客作者 System.out.println("作者:" + blog.getAuthor()); // 获取博客类型 System.out.println("博客类型:" + blog.getType()); }
}