Abstract type: Difference between revisions

m
(10 intermediate revisions by 6 users not shown)
Line 18:
You can declare a virtual function to not have an implementation by using <code>F.virtual.abstract</code> keyword. A type containing at least one abstract virtual function cannot be instantiated.
<syntaxhighlight lang="11l">T AbstractQueue
F.virtual.abstract enqueue(Int item) -> NVoid
 
T PrintQueue(AbstractQueue)
F.virtual.assign enqueue(Int item) -> NVoid
print(item)</syntaxhighlight>
 
Line 643:
===Interface===
{{trans|F#}}
<syntaxhighlight lang="cobol"> INTERFACE-ID.IDENTIFICATION ShapeDIVISION.
INTERFACE-ID. Shape.
PROCEDURE DIVISION.
IDENTIFICATION DIVISION.
METHOD-ID. perimeter.
DATA DIVISION.
Line 654 ⟶ 656:
END METHOD perimeter.
IDENTIFICATION DIVISION.
METHOD-ID. shape-area.
DATA DIVISION.
Line 664 ⟶ 667:
 
IDENTIFICATION DIVISION.
CLASS-ID. Rectangle.
Line 671 ⟶ 675:
INTERFACE Shape.
IDENTIFICATION DIVISION.
OBJECT IMPLEMENTS Shape.
DATA DIVISION.
Line 679 ⟶ 684:
PROCEDURE DIVISION.
IDENTIFICATION DIVISION.
METHOD-ID. perimeter.
DATA DIVISION.
Line 684 ⟶ 690:
01 ret USAGE FLOAT-LONG.
PROCEDURE DIVISION RETURNING ret.
COMPUTE ret = width * 2.0 + height * 2.0
GOBACK ret = width * 2.0 + height * 2.0
.END-COMPUTE
GOBACK.
END METHOD perimeter.
IDENTIFICATION DIVISION.
METHOD-ID. shape-area.
DATA DIVISION.
Line 694 ⟶ 702:
01 ret USAGE FLOAT-LONG.
PROCEDURE DIVISION RETURNING ret.
COMPUTE ret = width * height
GOBACK ret = width * height
.END-COMPUTE
GOBACK.
END METHOD shape-area.
END OBJECT.
Line 1,003 ⟶ 1,013:
{{trans|Go}}
<syntaxhighlight lang="emal">
^|EMal doesn'tdoes not support abstract types with partial implementations,
|but can use interfaces.
|^
Line 1,422 ⟶ 1,432:
 
=={{header|Java}}==
Java has an ''<code>interface''</code> and an ''<code>abstract class''</code>. Neither of which can be instantiated, and require some sort of implementation or abstraction.<br />
For an ''<code>interface''</code>, only the ''<code>private''</code> and ''<code>default''</code> access modifiers are allowed, which also implies they require code.<br />
A ''<code>private''</code> method cannot be overridden by a sub-class, and a ''<code>default''</code> method, optionally, can.<br />
A method with no access modifier is inherently ''<code>public''</code>, must not contain code, and requires implementation by its sub-class.<br />
Member fields are allowed, although are effectively ''<code>public</code>, <code>final''</code>, and ''<code>static''</code>, thus requiring a value.<br />
Here is an example of an ''<code>interface''</code>.
<syntaxhighlight lang="java">
interface Example {
Line 1,456 ⟶ 1,466:
}
</syntaxhighlight>
The ''<code>abstract class''</code> is very generalized, and for the most part is just a ''<code>class''</code> that allows for un-implemented methods.<br />
The ''<code>default''</code> access modifier is not used here, as it applies only to an ''<code>interface''</code>.<br />
Additionally, if a method is marked ''<code>abstract''</code>, then the ''<code>private''</code> access modifier is not allowed, as the concept does not apply.<br />
Here is an example of an ''<code>abstract class''</code>.<br If the class contains ''abstract'' methods then the class definition must also have the ''abstract'' keyword./>
If the class contains <code>abstract</code> methods then the class definition must also have the <code>abstract</code> keyword.
<syntaxhighlight lang="java">
abstract class Example {
Line 1,476 ⟶ 1,487:
}
</syntaxhighlight>
Here is an example of a class which ''<code>extends''</code> an ''<code>abstract class''</code>.
<syntaxhighlight lang="java">
public class ExampleImpl extends Example {
public int methodC(int valueA, int valueB) {
return valueA + valueB;
Line 3,172 ⟶ 3,183:
END TEXTHASHKEY;
</syntaxhighlight>
=={{header|Skew}}==
{{works with|skewc|0.9.19}}
 
In Skew, interfaces must be explicitly implemented with `::`.
 
<syntaxhighlight lang="skew">
@entry
def main {
var rgb = Rgb.new(0, 255, 255)
var hex = Hex.new("00ffff")
 
var color Color
color = hex
color.print
 
color = rgb
color.print
 
(hex as Color).print
}
 
interface Color {
def toString string
def print {
dynamic.console.log(self.toString)
}
}
 
class Rgb :: Color {
var r int, g int, b int
def toString string { return "rgb(\(r), \(g), \(b))" }
}
 
class Hex :: Color {
var code string
def toString string { return "#\(code)" }
}
</syntaxhighlight>
 
 
=={{header|Smalltalk}}==
A class is declared abtract by responding to the query <tt>isAbstract</tt> with true, and defining the required protocol for subclasses to raise an error notification. Optionally, instance creation can be blocked (but seldom done, as you will hit a subclassResponsibility anyway soon). Typically, the IDE provides menu functions to generate these definitions automatically (eg. "Insert Abstract Class" in the refactoring submenu of the class browser):
Line 3,192 ⟶ 3,243:
 
The act of giving a signature to a module is called ascription. There are two type of ascription:
Transparent (written <tt>:</tt>) and opaque (written <tt>:></tt>). If a structure is ascribed transparently,
none of the types are abstract. If it is ascribed opaquely, all types are abstract by default, but can be specified
explicitly in the signature, in which case they are not abstract.
Line 3,216 ⟶ 3,267:
Then say we have a structure ListQueue which implements queues as lists. If we write <tt>ListQueue :> QUEUE</tt>
then the queue type will be abstract, but if we write <tt>ListQueue : QUEUE</tt> or <tt>ListQueue : LIST_QUEUE</tt> it won't.
 
=={{header|Swift}}==
Swift uses Protocols to provide abstract type features. See [https://docs.swift.org/swift-book/documentation/the-swift-programming-language/protocols/ the docs]
 
A trivial example showing required properties and methods, and the means of providing a default implementation.
<syntaxhighlight lang="sml">
protocol Pet {
var name: String { get set }
var favouriteToy: String { get set }
 
func feed() -> Bool
 
func stroke() -> Void
 
}
 
extension Pet {
// Default implementation must be in an extension, not in the declaration above
 
func stroke() {
print("default purr")
}
}
 
struct Dog: Pet {
var name: String
var favouriteToy: String
// Required implementation
func feed() -> Bool {
print("more please")
return false
}
// If this were not implemented, the default from the extension above
// would be called.
func stroke() {
print("roll over")
}
}
 
</syntaxhighlight>
 
=={{header|Tcl}}==
Line 3,371 ⟶ 3,463:
 
The Go example, when rewritten in Wren, looks like this.
<syntaxhighlight lang="ecmascriptwren">import "./fmt" for Fmt
 
class Beast{
1,480

edits