?? a.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 A { private int a1; private int a2; private String name; public A(int newA1, int newA2, String newName) { a1 = newA1; a2 = newA2; name = newName; } public int getA1() { return a1; } public void setA1(int a1) { this.a1 = a1; } public int getA2() { return a2; } public void setA2(int a2) { this.a2 = a2; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String toString() { return name + "[" + a1 + "," + a2 + "]"; }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -