I'm thinking something where the following two are equivalent:
int [] array = { 1,2,3,4 }
foreach( int i in array ) {
print i
}
array = { 1,2,3,4 }
foreach( i in array ) {
print i
}
|
|
I'm thinking something where the following two are equivalent:
|
||
|
|
|
|
C# allows you to use the |
||
|
|
|
|
Yes, languages that have type inference work this way. The code is statically typed, but the compiler can figure out that if you write |
||
|
|
|
you can do it in C++0x, although the type wouldn't be an
|
||
|
|
|
|
In some flavours of BASIC, the type of a constant was determined from its value.
|
||
|
|
|
|
python works in a similar fashion to this. |
||||
|
|
|
In Lua there is only one numeric type.
array = { 1,2,3,4 }
for i,v in ipairs(array) do
print(v)
end
|
||
|
|
|
|
Works even in Powerbuilder (PB.NET):
|
||
|
|
|
|
You can also do this with templates in C++. Perl 6 will also be able to do this on it's various built-in data types. |
||
|
|
|
|
C# 3.0 has this as well. For instance:
compiles the same as:
Works for other data types as well, just giving an example. There is a difference, BTW, between type inference and loosely-typed languages. With type inference, there is still strong typing, so once the type has been established by initialization, it cannot be changed and performs just as well as if the type were specified explicitly. Loosely-typed languages, however (like the "Variant" type in VBA), allow the same variable to be set to values of different types at runtime. |
||
|
|
|
|
F#, CAML/OCAML, Haskell and Boo have type inference that generally behaves like what you are describing. Functional languages tend to have even more powerful type inference than this example. |
||
|
|