自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 消费者与生产者模式

public class Test {    public static void main(String[] args) {        StoreHouse storeHouse = new StoreHouse();        Producer producer = new Producer("生产者", storeHouse);        Consumer com

2010-01-30 05:13:00 295

原创 消费者与生产者模式

public class Product {    private int productId = 0;    public Product(int productId) {        this.productId = productId;    }    public int getProductId() {        return productId

2010-01-30 05:12:00 270

原创 消费者与生产者模式2

public class Producer implements Runnable {    String producerName = null;    StoreHouse storeHouse = null;    public Producer(String producerName, StoreHouse storeHouse) {        this

2010-01-30 05:11:00 226

原创 消费者与生产者模式

public class Consumer implements Runnable {    String consumerName = null;    StoreHouse storeHouse = null;    public Consumer(String consumerName, StoreHouse storeHouse) {        this.c

2010-01-30 05:10:00 244

原创 stack2

package Question_8;import java.util.*;import java.util.regex.*;import java.lang.*;public class Count {    String[] operater = new String[20];    String[] number = new String[20];  

2010-01-30 05:09:00 273

原创 stack3

package Question_8;public class Input_ {    public String InputString_() {        String value = null;        while (true) {            System.out.println("    " + "请输入你要计算的字符");      

2010-01-30 05:09:00 298

原创 stack

public class clsStack_ {    public double getValue(String value) {        double value1 = 1;        int IndexLeft;        int IndexRight;        double temp1;        IndexLeft = value.last

2010-01-30 05:06:00 245

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除