我试图学习J和我使用的是书上说这是定义一个一元函数为什么这个J功能不能运行?
function =: 3:0 function statements
所以我遵循了这一格式,并写了折叠代码的正确方法。你能告诉我这是为什么抛出一个语法错误,当我尝试输入称呼它,但如果我只是叫p将其返回3
h=:>:@[email protected]<[email protected]: :[: NB. gets all integers less than half of the input :[: forces error if used dyadicly
d=:(0&=|)~ h :[: NB. gets list where if one is set that index from h was a factor of the input y :[: forces error if used dyadicly
p=: 3:0 NB. tells us p is a monadic function
t =: d y
a =: i. 1
while. 1<#t
if. t~:0
a =: a, #t
end.
t=: _1 }. t NB. found first mistake wrong bracket but fixing that doesn't fix it
end.
a*1
)
NB. p gets a list of all integers that are factors of y
p 4
| syntax error
| p 4
p
3
NB. h and d run fine
h 4
1 2
h 7
1 2 3
d 7
1 0 0
d 4
1 1
J不是一种函数式编程语言。它是一种功能级编程语言。 (请参阅维基百科关于函数级编程的文章,以讨论其差异。) – 2009-11-28 02:44:03