【已修复】这是测试博客是否无法正常使用(2018-06-26 16:42:44起无法正常显示)

//CSDN客服反馈为暂时360极速模拟器,百度浏览器 搜狗浏览器显示有问题,技术人员正在处理
//我是Chrome显示也有问题,整个电脑里的浏览器只有火狐正常显示



public class Node {
        private final int value;//用户定义之后就不能修改
	private Node next;
	public Node(int value){
		this.value=value;
		this.next=null;//这样建立出来的结点都是单点Node
	}
	
	public Node getNext() {
		return next;
	}
	public void setNext(Node next) {
		this.next = next;
	}
	public int getValue() {
		return value;
	}

猜你喜欢

转载自blog.csdn.net/qq_37117521/article/details/80833677