Joy (Programming Language)

栏目: IT技术 · 发布时间: 5年前

内容简介:TheJoy is unusual (except forThe variable x is a formal parameter which is replaced by the actual value to be squared when the function is called. In afunctional language (Scheme) the same function could be defined:
Joy
Paradigm multi-paradigm : functional , concatenative , stack-oriented
Designed by Manfred von Thun
Developer Manfred von Thun
John Cowan
First appeared 2001
Stable release

March 17, 2003 / March 17, 2003

Typing discipline strong , dynamic
Majorimplementations
Joy0, Joy1, "Current Joy", "John Cowan's Joy", "JoyJ (Joy in jvmm)"
Influenced by
Scheme , FP , Forth
Influenced
Factor ,Cat, V,Trith

The Joy programming language incomputer science is a purely functional programming language that was produced by Manfred von Thun ofLa Trobe University inMelbourne,Australia. Joy is based on composition of functions rather thanlambda calculus. It has turned out to have many similarities toForth, due not to design but to a sort of parallel evolution and convergence. It was also inspired by the function-level programming style ofJohn Backus'sFP.

Contents

How it works [ edit ]

Joy is unusual (except for function-level programming languages and some esoteric ones, such asunlambda) in its lack of alambda operator, and therefore lack offormal parameters. To illustrate this with a common example, here is how the square function might be defined in an imperative programming language (C):

int square(int x)
{
    return x * x;
}

The variable x is a formal parameter which is replaced by the actual value to be squared when the function is called. In afunctional language (Scheme) the same function could be defined:

(define square
  (lambda (x) 
    (* x x)))

This is different in many ways, but it still uses the formal parameter x in the same way. In Joy the square function is defined:

DEFINE square == dup * .

In Joy, everything is a function that takes astack as an argument and returns a stack as a result. For instance, the numeral '5' does not represent an integer constant, but instead a short program that pushes the number 5 onto the stack.

  • The dup operator simply duplicates the top element of the stack by pushing a copy of it.
  • The * operator pops two numbers off the stack and pushes their product.

So the square function makes a copy of the top element, and then multiplies the two top elements of the stack, leaving the square of the original top element at the top of the stack, with no need for a formal parameter. This makes Joy concise, as illustrated by this definition ofquicksort:

DEFINE qsort ==
   [small]
   []
   [uncons [>] split]
   [enconcat]
   binrec.

"binrec" is one of Joy's manyrecursive combinators, implementing binary recursion. It expects four quoted programs on top of the stack which represent:

  • the termination condition (if a list is "small" (1 or 0 elements) it is already sorted),
  • what to do if the termination condition is met (in this case nothing),
  • what to do by default (split the list into two halves by comparing each element with the pivot), and finally
  • what to do at the end (insert the pivot between the two sorted halves).

Mathematical purity [ edit ]

In Joy, themeaning function is ahomomorphism from thesyntactic monoid onto thesemantic monoid. That is, the syntactic relation ofconcatenation ofsymbols maps directly onto the semantic relation ofcomposition offunctions. It is ahomomorphism rather than anisomorphism, because it isonto but notone-to-one; that is, no symbol has more than one meaning, but some sequences of symbols have the same meaning (e.g. "dup +" and "2 *").

Joy is a concatenative programming language : "The concatenation of two programs denotes the composition of the functions denoted by the two programs".

Its library routines mirror those of ISOC, though the current implementation is not easily extensible with functions written in C.

See also [ edit ]


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

蚂蚁金服

蚂蚁金服

廉薇、边慧、苏向辉、曹鹏程 / 中国人民大学出版社 / 2017-7 / 59.00

打开支付宝,我们不但可以用手机即时付款,给好友转账,为信用卡还款,购买水、电、天然气,还可以办理出国购物退税;因为余额宝,我们可以开始打理手中的零用钱,随时随地进行理财;因为芝麻信用,我们感受到信用为我们带来的信任、尊严与方便——免押金租车、租房、骑行。从支付宝到蚂蚁金服,可以毫不夸张地说,一家企业改变了我们的生活。 蚂蚁金服无疑是目前中国最具代表性的金融科技巨头,同时也是全球估值最高的金融......一起来看看 《蚂蚁金服》 这本书的介绍吧!

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具