Jump to content
Wikipedia The Free Encyclopedia

Ceylon (programming language)

From Wikipedia, the free encyclopedia
This article relies excessively on references to primary sources . Please improve this article by adding secondary or tertiary sources.
Find sources: "Ceylon" programming language – news · newspapers · books · scholar · JSTOR
(January 2017) (Learn how and when to remove this message)
Ceylon
Paradigm Object-oriented
Designed by Gavin King
Developer Eclipse Foundation
First appeared2011; 14 years ago (2011)
Stable release
1.3.3 / August 21, 2017; 8 years ago (2017年08月21日)
Typing discipline Static, strong, safe
Platform Java virtual machine, JavaScript
License Apache License 2.0
Filename extensions .ceylon[1]
Websiteceylon-lang.org
Influenced by
Java,[2] Scala, Smalltalk, ML,[3] Lisp,[4] Whiley [5]

Ceylon was an object-oriented, strongly statically typed programming language with an emphasis on immutability, created by Red Hat. Ceylon programs run on the Java virtual machine (JVM), and could be compiled to JavaScript.[6] [7] The language design focuses on source code readability, predictability, toolability, modularity, and metaprogrammability.[8]

Important features of Ceylon include:[9]

  • A type system enforcing null safety and list element existence at compile time
  • Regular syntax and semantics, avoiding special cases and primitively defined constructs in favor of syntactic sugar
  • Support for generic programming and metaprogramming, with reified generics
  • Modularity built into the language, based on JBoss modules, interoperable with OSGi [10] and Maven [11]
  • powerful tools, including an Eclipse-based IDE[12]

The name "Ceylon" is an oblique reference to Java, in that Java and Sri Lanka, formerly known as Ceylon, are islands known for growth and export of coffee and tea.

In August 2017, Ceylon was donated to the Eclipse Foundation. Development slowed down and finally stopped in 2020.[13] In April 2023, Eclipse Foundation declared the termination of the transition.[14]

Language features

[edit ]

Ceylon is heavily influenced by Java's syntax, but adds many new features.

Type system

[edit ]

One of the most novel aspects of Ceylon compared to Java is its type system. Ceylon foregoes Java's primitive types[15] and boxing in favor of a type system composed entirely of first-class objects. While this may cause boxing overhead in some situations, it makes the type system more uniform.

Ceylon allows for union and intersection types, in a similar fashion to TypeScript, Whiley and FLOW, which in fact, took the idea from Ceylon.

Union types, written A|B, allow a variable to have more than one type. The following example shows a Ceylon function which may take either an integer or a string:

sharedvoidintegerOrString(Integer|Stringinput){
if(isIntegerinput){
print("Got the integer ``input``");
}else{
print("Got the string '``input``'");
}
}

Intersection types, written A&B, are the theoretical foundation of flow-sensitive typing:

sharedvoidintegerOrString(Integer|Stringinput){
Integeradded=input+6;// illegal; the + operator is not defined on Integer|String
if(isIntegerinput){
Integeradded=input+6;// legal; input is now known to be an Integer
print("Got the integer ``input``");
}else{
print("Got the string '``input``'");
}
}

The condition is Integer input narrows the type of input to <Integer|String> & Integer, which distributes to Integer&Integer | String&Integer, which, as String and Integer are disjoint types, is equivalent to Integer&Integer | Nothing (Nothing is the empty bottom type), which simplifies to just Integer.

Null safety

[edit ]

Union and intersection types are used to provide null safety. The top type of the Ceylon type hierarchy is the class Anything, which has two subclasses: Object, the superclass of all normal classes and all interfaces, and Null, with the only instance null. Since Object and Null are disjoint types, most regular types like Integer or List<String> are not nullable; a nullable type is the union Integer|Null, abbreviated Integer?.[16]

Intersection types can be used to get a non-optional type out of a possibly-optional type, such as a type parameter. For example, the signature of a function that removes null elements from a stream of values could be:

Iterable<Element&Object>removeNulls<Element>(Iterable<Element>stream);

When removeNulls is called with a stream of Integer|Null elements, the result will be a stream of <Integer|Null> & Object elements, which simplifies to Integer.

Functions

[edit ]

Similarly to many modern languages, Ceylon supports first class functions and higher order functions, including function types and anonymous functions [17]

// A top-level higher-order function using block syntax (not associated with any user-created classes)
Stringprocess(Stringtext,StringtransformString(StringtoChange)){
returntransformString(text);
}
// A top-level function calling String.reverse in expression form.
Stringreverse(Stringtext)=>text.reversed;
// A function reference to String.reversed but mostly equivalent to the function above.
String(String)reverseFunctionReference=String.reversed;
// An example where the top-level function above is provided as an argument to the higher-order function above
Stringreversed1=process("one",reverse);
// An example where an anonymous function - (text) => text+text - is provided to the higher-order function above. 
Stringreversed2=process("one",(text)=>text+text);

Enumerated types

[edit ]

Similar to Java and many other languages, and with a similar mechanism as algebraic types, Ceylon supports enumerated types, otherwise known as enums. This is implemented in Ceylon with a pattern of limiting the instances of an abstract class at declaration to a limited set of objects (in this case, singleton instances). Another way to implement this pattern is with the new constructor feature in Ceylon 1.2 where the objects are implemented as different named constructor declarations.[18]

// Traditional syntax for enumerated type, in this case, limiting the instances to three objects(for this purpose: Singletons)
abstractclassVehicle(sharedStringname)ofplane|train|automobile{}
objectplaneextendsVehicle("plane"){}
objecttrainextendsVehicle("train"){}
objectautomobileextendsVehicle("automobile"){}
// Compile error: type is not a subtype of any case of enumerated supertype: 'boat' inherits 'Vehicle'
//object boat extends Vehicle("boat") {}
// New (as of Ceylon 1.2.0) constructor-based syntax
classVehicleofplane|train|automobile{
Stringname;
abstractnewnamed(StringpName){
name=pName;
}
sharednewplaneextendsnamed("plane"){}
sharednewtrainextendsnamed("train"){}
sharednewautomobileextendsnamed("automobile"){}
// Compile error: value constructor does not occur in of clause of non-abstract enumerated class: 'boat' is not listed in the of clause of 'Vehicle'
//shared new boat extends named("boat") {}
}

Type inference

[edit ]

Ceylon is strongly and statically typed, but also has support for type inference. The value keyword is used to infer the type of a variable, and the function keyword is used to infer the type of a function. The following two definition pairs are each equivalent:

Integeri=3;
valuei=3;
Integeradd(Integeri1,Integeri2){
returni1+i2;
}
functionadd(Integeri1,Integeri2){
returni1+i2;
}

However, to make single-pass type inference possible, type inference is only allowed for non-toplevel and unshared declarations.[19]

Entry point with names

[edit ]

By default the starter (ceylon run) runs the shared run() function of a module:

/* The classic Hello World program */
sharedvoidrun(){
print("Hello, World!");
}

but any other shared function without parameters can be used as main calling the program with the run parameter, like this:

ceylon run --compile=force --run hello default

Versions

[edit ]

Versions of Ceylon released:[20]

  • M1 0.1 "Newton" (Dec 20 2011)
  • M2 0.2 "Minitel" (Mar 2 2012)
  • M3 0.3 "V2000" (Jun 21 2012)
  • M3.1 0.3.1 "V2000" (Jul 6 2012)
  • M4 0.4 "Analytical Engine" (Oct 29 2012)
  • M5 0.5 "Nesa Pong" (Mar 13 2013)
  • M6 0.6 "Virtual Boy" (Sep 23 2013)
  • 1.0 beta "Virtual Boy" (Sep 24 2013)
  • 1.0.0 "No More Mr Nice Guy" (Nov 13 2013)
  • 1.1.0 "Ultimate Ship The Second" (Oct 09 2014)
  • 1.2.0 "A Series of Unlikely Explanations" (Oct 28 2015)
  • 1.2.1 "Irregular Apocalypse" (Feb 11 2016)
  • 1.2.2 "Charming But Irrational" (Mar 11 2016)
  • 1.3.0 "Total Internal Reflection" (Sep 19 2016)
  • 1.3.1 "Now We Try It My Way" (Nov 22 2016)
  • 1.3.2 "Smile Tolerantly" (Mar 02 2017)
  • 1.3.3 "Contents May Differ" (Aug 21 2017)

License

[edit ]

All parts of Ceylon are available as free software, mostly the Apache License.[21] Part of the source code is licensed under LGPL.

See also

[edit ]

References

[edit ]
  1. ^ King, Gavin. "The Ceylon Language: §4.1 Compilation unit structure" . Retrieved 2015年12月04日. A compilation unit is a text file, with the filename extension .ceylon.
  2. ^ "Frequently Asked Questions: What is Ceylon?" . Retrieved 2015年12月04日. Ceylon is a new programming language that's deeply influenced by Java
  3. ^ "ceylon/user - Gitter" . Retrieved 2015年12月04日.
  4. ^ "ceylon/user - Gitter" . Retrieved 2015年12月04日.
  5. ^ "Top 10 Ceylon language features Java wishes it had" . Retrieved 2019年11月29日.
  6. ^ "Ceylon 1.0 beta" . Retrieved 2013年09月26日.
  7. ^ "Project Ceylon – Red Hat builds Java replacement". The Register. 2011年04月13日. Retrieved 2011年11月27日.
  8. ^ King, Gavin (2012年01月10日). "Principles that guide this project" . Retrieved 2015年12月04日.
  9. ^ "FAQ about language design: Goals" . Retrieved 2015年12月04日.
  10. ^ Festal, David (2014年10月10日). "Write in Ceylon, deploy as OSGI, use in Java EE" . Retrieved 2015年12月04日.
  11. ^ "Maven repositories" . Retrieved 2015年12月04日.
  12. ^ "Features of Ceylon IDE" . Retrieved 2015年12月04日.
  13. ^ "ceylon / ceylon". GitHub, Inc. 2020年05月25日. Archived from the original on 2023年10月03日. Retrieved 2024年01月22日.
  14. ^ "Eclipse CeylonTM Termination Review". Eclipse Foundation. 2023年04月05日. Archived from the original on 2023年04月23日. Retrieved 2023年04月23日.
  15. ^ King, Gavin. "Ceylon: Language Design FAQ".
  16. ^ King, Gavin. "The Ceylon Language: §1.4.3 Compile-time safety for null values and flow-sensitive typing" . Retrieved 2015年12月04日.
  17. ^ King, Gavin. "The Ceylon Language: 4.7 Functions" . Retrieved 5 December 2015.
  18. ^ King, Gavin. "The Ceylon Language: 4.5.8 Enumerated classes" . Retrieved 6 December 2015.
  19. ^ King, Gavin. "The Ceylon Language: §3.2.9 Type inference" . Retrieved 2015年12月04日.
  20. ^ https://ceylon-lang.org/download-archive/ Ceylon: Download Previous Ceylon versions
  21. ^ "Ceylon: Licenses" . Retrieved 2015年12月04日.
[edit ]

AltStyle によって変換されたページ (->オリジナル) /