作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 DrRacket。我对这段代码有疑问:
(define (qweqwe n) (
(cond
[(< n 10) #t]
[(>= (lastnum n) (pochtilastnum n)) (qweqwe (quotient n 10))]
[else #f]
)
)
)
(define ( RTY file1 file2 )
(define out (open-output-file file2 #:mode 'text #:exists 'replace))
(define in (open-input-file file1))
(define (printtofile q) (begin
(write q out)
(display '#\newline out)
))
(define (next)
(define n (read in))
(cond
[(equal? n eof) #t]
[else (begin
((if (qweqwe n) (printtofile n) #f))
) (next)]
)
)
(next)
(close-input-port in)
(close-output-port out))
但是当我开始( RTY "in.txt""out.txt")时,我在 ((if (qweqwe n) (printtofile n) #f)) 处出现错误:
application: not a procedure;
expected a procedure that can be applied to arguments
given: #f
arguments...: [none]
有什么问题吗?
添加:我将代码更改为:
(cond
[(equal? n eof) #t]
[else
(if (qweqwe n) (printtofile n) #f)
(next)]
)
但问题仍然存在。
最佳答案
有一些不必要的括号,不要这样做:
((if (qweqwe n) (printtofile n) #f))
试试这个:
(if (qweqwe n) (printtofile n) #f)
也在这里:
(define (qweqwe n)
((cond [(< n 10) #t]
[(>= (lastnum n) (pochtilastnum n)) (qweqwe (quotient n 10))]
[else #f])))
应该是:
(define (qweqwe n)
(cond [(< n 10) #t]
[(>= (lastnum n) (pochtilastnum n)) (qweqwe (quotient n 10))]
[else #f]))
在这两种情况下,问题都在于,如果您用 ()
括起一个表达式,则意味着您正在尝试调用一个过程。鉴于上面的 if
和 cond
表达式的结果不返回过程,就会发生错误。另外,原始代码中的 begin
都是不必要的,cond
在每个条件之后都有一个隐式的 begin
,对于 a 的主体也是如此过程定义。
关于方案的 "expected a procedure that can be applied to arguments",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16443348/
我是一名优秀的程序员,十分优秀!