User Tools

Site Tools


at:tutorial:symbiosis

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
at:tutorial:symbiosis [2007/06/19 10:51] jdedeckerat:tutorial:symbiosis [2007/06/19 10:54] jdedecker
Line 51: Line 51:
  
 ===== Overloading ===== ===== Overloading =====
 +In Java methods can be overloaded based on the number of arguments and the types of the arguments.  Invoking an overloaded method from within AmbientTalk requires special consideration.
 +If the Java method is overloaded based on arity (i.e. each overloaded method takes a different number of arguments), the number of arguments in the AmbientTalk invocation can be used to identify a unique Java method. Hence, overloading based on arity does not require special attention. If the Java method is overloaded based solely on argument types, the interpreter may derive that the actual arguments can only be converted from AmbientTalk to the appropriate Java types for one of the matching overloaded signatures. Again, if only one match remains, the unique match is invoked. In the remaining case in which the actual AmbientTalk arguments satisfy more than one overloaded method signature, the symbiotic invocation fails. It is then the AmbientTalk programmer's responsibility to provide explicit type information in the method invocation.
 +
 +<code>
 +TODO
 +</code>
  
 ===== Concurrency ===== ===== Concurrency =====
at/tutorial/symbiosis.txt · Last modified: 2013/05/17 20:25 by tvcutsem