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

📄 bug793.clp

📁 一套美国国家宇航局人工智能中心NASA的专家系统工具源代码
💻 CLP
字号:
(defclass BEclass (is-a USER)  (role concrete)  (slot sName (create-accessor read-write))  (multislot supertypes (create-accessor read-write))  (multislot subtypes (create-accessor read-write))  (multislot properties (create-accessor read-write))  (slot separateCompilation (create-accessor read-write))  (slot parent (create-accessor read-write))  (multislot Vproperties (create-accessor read-write))  (multislot values (create-accessor read-write))  (slot controlCaption (create-accessor read-write))  (slot	windowName (create-accessor read-write))  (slot	defaultInstance	(create-accessor read-write))  (multislot viewProperty (create-accessor read-write))  (slot	controlType (create-accessor read-write))  (slot	index (create-accessor read-write))  (slot	x (create-accessor read-write))  (slot	width (create-accessor read-write))  (slot	height (create-accessor read-write)))(defclass BEwindow   (is-a USER)			  (role concrete)	  (slot sName (create-accessor read-write))  (slot windowCaption (create-accessor read-write)))(defclass BECPMheader   (is-a USER)  (role concrete)	  (slot sName (create-accessor read-write)))(deffunction BEeditInit (?IOportName)  (loop-for-count (?i 1 20) do    (make-instance of BEwindow))  (make-instance of BEclass (sName RootClass))  (make-instance of BECPMheader)  (return TRUE))(deffunction BECPMIn(?gFN)  (reset)  (load-instances ?gFN))

⌨️ 快捷键说明

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