Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
14
votes
4answers
338 views

When would JavaScript == make more sense than ===?

As JavaScript === vs == : Does it matter which "equal" operator I use? indicates they are basically identical except '===' also ensures type equality and hence '==' might perform type ...
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
682 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?
4
votes
5answers
157 views

Does it make sense to use Hungarian notation prefixes in interpreted languages? [closed]

First of all, I have taken a look at the following posts to avoid duplicate question. Hungarian Notation Why shouldn't I use "Hungarian Notation"? Are variable prefixes (“Hungarian ...
4
votes
5answers
402 views

Static/strong typing and refactoring

It seems to me that the most invaluable thing about a static/strongly-typed programming language is that it helps refactoring: if/when you change any API, then the compiler will tell you what that ...
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?
2
votes
4answers
113 views

What's the difference between Object, *, and no type at all?

Is there any difference between those three declarations? var x; var y:Object; var z:*; Is there anything in AS that's not an Object?
1
vote
6answers
774 views

Does ruby 1.9.2 have an is_a? function?

I googled that there is an is_a? function to check whether an object is an integer or not. But I tried in rails console, and it doesn't work. I ran the code like the following: "1".is_a? 1.is_a? ...
1
vote
6answers
858 views

When should weak types be discouraged?

When should weak types be discouraged? Are weak types discouraged in big projects? If the left side is strongly typed like the following would that be an exception to the rule? int i = 5 ...
0
votes
0answers
23 views

name some extremly weakly typed languages and explain how they work

There is a lot of ink spilled on whether languages like c or python are weakly typed. I'm more interested on languages which are unambiguously next to the edge of the weak typing on the sliding ...
0
votes
4answers
185 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 ...
0
votes
1answer
76 views

Is there any real possibility/example of useful `weak' typing policy implementation?

Are the implicit type coercions the absoulte evil? Or the history does know a decent implementation of what I've never heard.. Is `weak' typing doomed to be implemented in a way it is done in PHP, ...
-1
votes
7answers
1k views

PHP: Code checker since PHP is a loose type / dynamic language?

I have a small PHP web-based application that is beginning to grow moderately in size. I'm starting to become concerned with managing my PHP code base, given PHP is a loosely/weak typed, dynamic ...