Sujet : Re: OpenVMS system programming language
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.os.vmsDate : 25. Feb 2025, 02:05:46
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vpj519$1h5gb$1@dont-email.me>
References : 1 2 3 4 5 6 7
User-Agent : Pan/0.162 (Pokrosvk)
On Mon, 24 Feb 2025 16:55:31 -0500, Arne Vajhøj wrote:
Type declarations are part of the Pascal way.
But I don't think it is the same in OO languages.
I have never heard a Java developer ask for it.
Never written things like this?
private final HashMap<Integer, ArrowLabel>
SatLabels = new HashMap<Integer, ArrowLabel>();
Or this?
return
new Iterable<Map<String, String>>()
{
public Iterator<Map<String, String>> iterator()
{
return
new ResultMapIterator
(
Resolver.query
(
/*uri =*/ ProviderUri,
/*projection =*/ FieldNames,
/*selection =*/ Selection,
/*selectionArgs =*/ SelectionArgs,
/*sortOrder =*/ SortOrder
),
FieldNames
);
} /*iterator*/
} /*Iterable*/;