⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 node.java

📁 this program is about logic and have 4 class. for execute this program use of link list.
💻 JAVA
字号:

public class node
{
    private  String st1;
    private  String st2;
    public   node next;
    public   node prev;

    public  node()
    {

        this.prev=this.next=null;
        this.setSt1("");
        this.setSt2("");
        
    }
    public  void setSt1(String s)
    {
          st1=s;
    }
    public  String getSt1()
    {
        return st1;
    }

    public  void setSt2(String s)
    {
          st2=s;
    }
    public  String getSt2()
    {
        return st2;
    }
   

}

⌨️ 快捷键说明

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