Top "Strong-typing" questions

A typing system that enforces restrictions on which operations or methods may be called on an object based on type.

Is Python strongly typed?

I've come across links that say Python is a strongly typed language. However, I thought in strongly typed languages you …

python strong-typing weak-typing
What are Java's primitive types?

What are primitive type in Java? What is the difference between a primitive type and a reference type? How many …

java types primitive-types strong-typing
What do strict types do in PHP?

I've seen the following new line in PHP 7, but nobody really explains what it means. I've googled it and all …

php php-7.2 strong-typing weak-typing
Static/Dynamic vs Strong/Weak

I see these terms bandied around all over the place in programming and I have a vague notion of what …

terminology strong-typing static-typing dynamic-typing weak-typing
Are there strongly-typed collections in Objective-C?

I'm new to Mac/iPhone programming and Objective-C. In C# and Java we have "generics", collection classes whose members can …

objective-c generics data-structures collections strong-typing
Is C strongly typed?

To quote Wikipedia: Two commonly used languages that support many kinds of implicit conversion are C and C++, and it …

c strong-typing weakly-typed
When use a interface or class in Typescript

I have a simple scenario of a login that requires user's input a email and password in Typescript. I need …

typescript class web interface strong-typing
Is there anything like a generic list in Cocoa / Objective-C?

What I really like in C# are generic lists. A list that can contain only one type of objects. Is …

objective-c cocoa list data-structures strong-typing