queuesample.java

来自「jdk 6.0的api文档...很难找到哦」· Java 代码 · 共 37 行

JAVA
37
字号
/** * QueueSample.java - Java type representing a snapshot of a given queue. * It bundles together the instant time the snapshot was taken, the queue * size and the queue head. */package com.example.mxbeans;import java.beans.ConstructorProperties;import java.util.Date;public class QueueSample {        private final Date date;    private final int size;    private final String head;        @ConstructorProperties({"date", "size", "head"})    public QueueSample(Date date, int size, String head) {        this.date = date;        this.size = size;        this.head = head;    }        public Date getDate() {        return date;    }        public int getSize() {        return size;    }        public String getHead() {        return head;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?