Tagged Questions
17
votes
4answers
1k views
Static/Dynamic vs Strong/Weak
I see these terms banded around all over the place in programming and I have a vague notion of what they mean. A search shows me that such things have been asked all over stack overflow in fact. As ...
8
votes
4answers
3k views
Can someone tell me what Strong typing and weak typing means and which one is better?
Can someone tell me what Strong typing and weak typing means and which one is better?
5
votes
5answers
686 views
Strongly typed datasets vs. weakly typed datasets
What is meant by strongly typed datasets in .Net? Can anybody explain with a clear and brief example?
And also, what is the difference between strongly typed and weakly typed datasets?
3
votes
4answers
2k views
Strong vs weak typing
The way I understand it, the following is allowed in PHP because it's a weakly-typed language.
$var = 'Hello';
$var = 5;
I just installed a Windows version of Python 2.6 and I was expecting it NOT ...
2
votes
2answers
183 views
Advantages to Languages with “Weak Typing”
Why would a programming language want to use weak typing over strong typing?
0
votes
4answers
186 views
Pros and cons of weak and strong typing
I'm making the transition from Java to PHP/Javascript and discovering all the practical aspects of using a weakly typed language.
As I'm in a position to fully compare the two I'd like to know the ...