Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changes between Version 1 and Version 2 of explicit_casts

Show
Ignore:
Author:
keinfarbton (IP: 217.228.183.49)
Timestamp:
03/17/07 21:20:45 (17 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • explicit_casts

    v1 v2  
    33D has another logic for resolving methods than Java has. E.g. in D calling max( byte, int ) is ambiguos if a max(int,int) and max(double,double) exists. In Java this is not ambigious. 
    44 
    5 TioPort resolves all types and method calls. Because of that TioPort is able to case buildin type, which do not match exactly, to their target type. 
     5TioPort resolves all types and method calls. Because of that TioPort is able to cast buildin type, which do not match exactly, to their target type.