What does improved type-safety means?
Asked
Active
Viewed 209 times
0
-
2You're going to have to give us some context here - are you quoting from somewhere? Improved compared to what? – AakashM Oct 19 '10 at 20:25
-
possible duplicate of [What is Type-safe?](http://stackoverflow.com/questions/260626/what-is-type-safe) ...and/or a couple more posts listed in the _Related_ section on the right. – Péter Török Oct 19 '10 at 20:30
1 Answers
0
Definition of type safety from Wikipedia:
In computer science, type safety is the extent to which a programming language discourages or prevents type errors. A type error is erroneous or undesirable program behaviour caused by a discrepancy between differing data types.
E.G. if you can write a program where you treat a string like a number then you have low (or no) type safety.
Now apply this to the context from which you read/heard the 'improved type safety' phrase. In relation to the definition above 'improved' means 'to a greater extent'.

Synesso
- 37,610
- 35
- 136
- 207