当前位置:首页 » 硬盘大全 » lisp读取缓存的数据
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

lisp读取缓存的数据

发布时间: 2023-02-22 11:03:13

A. 在LISP中用DCL对话框读取TXT中的数据

lisp里就直接用lisp函数来读取文件内容。只需要三个函数,open,close,read-line
Opens a file for access by the AutoLISP I/O
functions
(open filename mode)

Closes an open file
(close file-desc)

Reads a string from the keyboard or from an open
file, until an end-of-line marker is encountered
(read-line [file-desc])

B. lisp如何读取文件中的数据

先将文本文件用(100
200)这样表示,每一行一个点,先用read-line读取,然后用read读让它返回一个表即(x坐标
y坐标),然后将一个表付值给一个变量,即可调用了