javaDSL简单实现示例分享_Java教程-查字典教程网
javaDSL简单实现示例分享
javaDSL简单实现示例分享
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:packagecom.vd.dsl;importstaticcom.vd.dsl.GraphBuilder.*;publi...

复制代码 代码如下:

package com.vd.dsl;

import static com.vd.dsl.GraphBuilder.*;

public class Main {

public static void main(String[] args) {

Graph().edge().from("a").to("b").weigth(20.0).edge().from("b").to("c").weigth(10.0).printGraph();

}

}

复制代码 代码如下:

package com.vd.dsl;

public class Edge {

private Vertex fromVertex;

private Vertex toVertex;

public Vertex getFromVertex() {

return fromVertex;

}

public void setFromVertex(Vertex fromVertex) {

this.fromVertex = fromVertex;

}

public Vertex getToVertex() {

return toVertex;

}

public void setToVertex(Vertex toVertex) {

this.toVertex = toVertex;

}

public Double getWeight() {

return weight;

}

public void setWeight(Double weight) {

this.weight = weight;

}

private Double weight;

public Edge() {

}

@Override

public String toString() {

return fromVertex.getLabel()+ " to "+

toVertex.getLabel() + "with weigth "+

this.weight;

}

}

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Java学习
    热门Java学习
    编程开发子分类