📄 d.java
字号:
package com.sample.rete;/* * This code and the accompanying presentation is licensed for use in the United States under a * Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License * http://creativecommons.org/licenses/by-nc-sa/3.0/us/ * All other rights reserved, copyright 2008, EBDX.COM, LLC * Author: Lawrence Terrill, Sr. Partner, EBDX.COM, LLC, 5/1/2008 * This code supports the presentation, An Introduction to the Rete Algorithm, by Lawrence Terrill * */public class D { private int d1; private int d2; private String name; public D(int newD1, int newD2, String newName) { d1 = newD1; d2 = newD2; name = newName; } public int getD1() { return d1; } public void setD1(int d1) { this.d1 = d1; } public int getD2() { return d2; } public void setD2(int d2) { this.d2 = d2; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String toString() { return name + "[" + d1 + "," + d2 + "]"; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -