自动化立体仓库 - WMS系统
zjj
2023-06-09 34a93b4b34e056ac7c20891efe5630245dc9766c
src/main/java/com/zy/common/model/Shelves.java
@@ -1,5 +1,9 @@
package com.zy.common.model;
import com.alibaba.fastjson.JSON;
import com.core.common.Arith;
import com.core.exception.CoolException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
@@ -11,13 +15,13 @@
public class Shelves {
    // 货架排数量
    private final int size;
    public final int size;
    // 货架组数量
    private final int group;
    public final int group;
    // 偏移量[default:0]
    private final int offset;
    public final int offset;
    // 货架实例节点集合
    public List<List<Integer>> nodes;
@@ -97,16 +101,28 @@
        return -1;
    }
    public Integer get(Integer curRow) {
        for (List<Integer> node : nodes){
            if (node.contains(curRow)) {
                return nodes.indexOf(node) + 1;
            }
        }
        throw new CoolException("货排检索系统报错, node:" + JSON.toJSONString(nodes) + ", curRow:" + curRow);
    }
    public static void main(String[] args) throws InterruptedException {
        Shelves shelves = new Shelves(8,2);
        System.out.println(shelves.nodes.toString());
        int start = 1;
        while (true) {
            System.out.println(start);
            start = shelves.start(start);
            Thread.sleep(500L);
        }
        double remainder = Arith.divides(1,16 - 1, 16);
        System.out.println(remainder);
        System.out.println((int) remainder);
//        Shelves shelves = new Shelves(8,2);
//        System.out.println(shelves.nodes.toString());
//        int start = 1;
//        while (true) {
//            System.out.println(start);
//            start = shelves.start(start);
//            Thread.sleep(500L);
//        }
    }
}