在Java中實現評論功能,可以采用以下步驟:
下面是一個簡單的示例代碼:
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class Comment {
private String content;
private String author;
private Date createdAt;
public Comment(String content, String author) {
this.content = content;
this.author = author;
this.createdAt = new Date(); // 使用當前時間作為評論的創建時間
}
// 省略getter和setter方法
public static void main(String[] args) {
List<Comment> comments = new ArrayList<>();
// 添加評論
Comment comment1 = new Comment("這是一個很好的文章!", "張三");
comments.add(comment1);
Comment comment2 = new Comment("我有同感!", "李四");
comments.add(comment2);
// 獲取評論列表
for (Comment comment : comments) {
System.out.println(comment.getAuthor() + " 于 " + comment.getCreatedAt() + " 評論:" + comment.getContent());
}
// 刪除評論
comments.remove(comment1);
}
}
以上示例為一個簡單的評論功能的演示,你可以根據具體需求進行擴展和修改。