vote up 3 vote down star

I first came across exceptions with ADA 83. As far as I know, the designers of ADA invented the concept of exceptions. Is this true, or did any programming language that came before use exceptions too?

flag

80% accept rate
2  
I like how this question is almost word for word from a question you posted less than a minute earlier regarding exceptions. – Brandon Aug 20 at 19:56
1  
In which language did semicolons first appear? – John W Aug 20 at 20:02
3  
That'll be because I cut and pasted the other question, then edited it to this one, rather than retype it. I'm at a loss to understand why you seem to have a problem with that. – David Arno Aug 20 at 20:02
2  
To preempt another question about semicolons, I'll just answer it here: semicolons as statement separators first appeared in Algol-60. – Pavel Minaev Aug 20 at 20:05
Hah thanks Pavel ;) – John W Aug 20 at 20:06
show 9 more comments

3 Answers

vote up 3 vote down check

According to c2.com's Ground Breaking Languages page it was PL/I.

link|flag
There was a lot of good stuff in that language. Pity about how it all worked together. – David Thornley Aug 20 at 19:58
2  
Note: this was my answer to the question about what language exception handling first appeared in, which was merged with this question, IMO inappropriately. – chaos Aug 20 at 20:20
I've changed the question to the one you answered chaos. I tried to just delete it and start again, but even as the question asker, I'm only allowed to vote to delete my own question. This place has changed a lot since I was last here. – David Arno Aug 20 at 20:32
vote up 0 vote down

From Wikipedia:

Generic programming facilities first appeared in the 1970s in languages like CLU and Ada, and were subsequently adopted by many object-based and object-oriented languages, including BETA, C++, D, Eiffel, Java, and DEC's now defunct Trellis-Owl language. Implementations of generics in languages such as Java and C# are formally based on the notion of parametricity, due to John C. Reynolds.

link|flag
5  
If you're going to copy and paste from Wikipedia, at least provide the source link. – Brandon Aug 20 at 19:55
5  
If you're going to straight copy from the Wiki page, at least cite it. – Jason Aug 20 at 19:55
Hey, he ripped that off! – skaffman Aug 20 at 19:58
I'm confused, even before the edit he put "From wikipedia", what's the problem? – John Rasch Aug 20 at 20:07
No, he didn't. He edited it after the fact, it just doesn't show the revision. Either way he did add it very quickly after the fact, so there is no problem. – Brandon Aug 20 at 20:11
show 1 more comment
vote up 2 vote down

It depends on how you define generics. Parametric polymorphism - which allows you to define functions and types that are not tied to particular argument / field types - was there in ML already - and that's 1973. There is a Standard ML sample from Wikipedia:

fun reverse [] = []
  | reverse (x::xs) = (reverse xs) @ [x]

Note that this function is statically typed, but polymorphic ("generic") on any type of list.

While this example is SML (which is a later thing), so far as I know, the concept was present in earliest ML versions as well.

link|flag
2  
All folk, please note: this answer was to a related question (in which language did generics first appear) which unfortunately got merged with this one by an over-enthusiastic admin. It's not Pavel's fault it's not an answer to this question, so please do not down-vote him for it. – David Arno Aug 20 at 20:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.