object.method(para) | Beta, C#, C++, Cecil, Delphi-Kylix, E, Eiffel, Icon, Java, JavaScript, merd, Modula-3, MSH, Perl6, Python, Ruby, Sather, Visual Basic |
object#method para | OCaml |
object:method(para) | Lua |
object method para | Pliant, Tcl |
object method: para1 method_continuation: para2 | Smalltalk |
object <- method(para) | E |
[ object method: para ] | Objective-C |
object->method(para) | C++, Perl, PHP, Pike |
object["method"](para) | Pike |
object/method para | Rebol |
method object para | Haskell, Mercury |
(method object para) | Common Lisp |
method(object, para) | Ada, Dylan, Matlab |
para->method | Beta |
(send object method para) | MzScheme |
with no parameter
object.method | Eiffel, merd, Perl6, Ruby |
object.property | C# |
object.method() | C#, C++, E, Java, JavaScript, Python |
object#method | OCaml |
object:method | Pliant |
object->method | Perl |
object->method() | Pike |
object/method | Rebol |
object["method"]() | Pike |
object method | Smalltalk |
[ object method ] | Objective-C |
method object | Haskell, Mercury |
(method object) | Common Lisp |
method(object) | Ada, Dylan, Matlab |
(send object method) | MzScheme |
new | Ada, PHP, Pliant, Simula |
new class_name(...) | C#, C++, Java, JavaScript, Perl, Visual Basic |
new class_name ... | OCaml |
class_name.new(...) | Perl6, Ruby |
class_name new | Smalltalk |
class_name(...) | Matlab, Pike, Python |
class_name v(...) | C++ |
class_name.Create | Delphi-Kylix |
!class_name!constructor_name(...) | Eiffel |
& | Beta |
make-object | MzScheme |
(make-instance class_name ...) | Common Lisp |
[class_name alloc] | Objective-C |
make class_name! ... | Rebol |
def object_name { ... } | E |
o.clone | Perl6 |
o.clone | Eiffel, Ruby |
o.deep_clone | Eiffel |
o.clone() | Java |
o.Clone() | C# |
clone / copy or deepCopy | Smalltalk |
dclone | Perl |
[o copy] | Objective-C |
copy.copy(o) | Python |
purecopy | Emacs Lisp |
{< >} or Oo.copy o | OCaml |
o2 = o | C++, Matlab, PHP |
o2.all := o.all | Ada |
make o [] | Rebol |
delete | C++, JavaScript |
destroy | Pike |
DESTROY | Perl |
dealloc | Objective-C |
Dispose | C# |
__del__ | Python |
Requires instantiation of Ada.Unchecked_Deallocation | Ada |
class | C#, C++, Haskell, Java, Matlab, MzScheme, OCaml, Perl6, PHP, Pike, Python, Ruby |
class c inherit p1 p2 ... feature decl decl ... end | Eiffel |
defclass defstruct | Common Lisp |
subclass | Smalltalk |
type | Pliant |
type c is tagged record ... end record | Ada |
@interface c { ... } ... @end | Objective-C |
: | Beta |
isa | Matlab, Perl |
is_a? kind_of? | Ruby |
o.meta.isa | Perl6 |
isKindOf | Smalltalk |
isKindOfClass | Objective-C |
dynamic_cast | C++ |
instanceof | Java, JavaScript |
isinstance | Python |
in | Ada |
is | C# |
is_a | PHP |
Program.inherits or Program.implements | Pike |
entry_type | Pliant |
typep | Common Lisp |
ISTYPE | Modula-3 |
object## < classname## | Beta |
type.accepts(object) / object =~ v : type | E |
var ?= val | Eiffel |
class | Matlab, Objective-C, Ruby, Smalltalk |
__class__ | Python |
getClass | Java |
typeid | C++ |
typeof | C#, JavaScript |
type-of | Common Lisp |
ref | Perl |
generator | Eiffel |
meta | Perl6 |
object_program | Pike |
getAllegedType | E |
methods | Matlab, Ruby |
get_class_methods | PHP |
getMethods | Java |
get-member | MSH |
indices | Pike |
o.meta.getmethods | Perl6 |
o.__class__.__dict__ | Python |
o class selectors / o class allSelectors | Smalltalk |
o.__getAllegedType().getMessageTypes() | E |
child :< parent | Beta |
class child : parent | C#, C++ |
class child < parent end | Ruby |
class child is parent { ... } | Perl6 |
class child extends parent | Java |
class child(parent): | Python |
class child inherit parent end | Eiffel |
parent subclass: child | Smalltalk |
make parent ... | Rebol |
inherit | OCaml, Pike |
def child extends makeSuperObject(parent, ...) { ... } | E |
type child is new parent with record ... end record | Ada |
(defclass child (parent) ...) | Common Lisp |
@interface child : parent { ... } ... @end | Objective-C |
@ISA = qw(parent1 parent2) | Perl |
can | Perl, Perl6 |
respond_to? | Ruby |
respondsTo | E, Smalltalk |
respondsToSelector | Objective-C |
hasattr(obj, "meth") | Python |
object->method | Pike |
all [in object 'method function? get in object 'method] | Rebol |
find-method | Common Lisp |
ismethod | Matlab |
this | Beta, C#, C++, Java, JavaScript, PHP, Pike |
THIS | Simula |
self | Objective-C, Rebol, Ruby, Smalltalk |
object_name if defined as: def object_name { ... } | E |
Current | Eiffel |
first parameter | Matlab, Perl, Pliant, Python |
dispatching parameter | Ada, Common Lisp |
Me | Visual Basic |
. | Perl6 |
super | E, Java, Objective-C, Ruby, Smalltalk |
super(Class, self).meth(args) | Python |
base | C# |
Precursor | Eiffel |
$o.SUPER::method(...) | Perl6 |
$o->SUPER::method(...) | Perl |
method(parent(dispatching-parameter)) | Ada |
call-next-method | Common Lisp |
inner | Beta |