Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
16answers
4k views

Is C strongly typed?

To quote Wikipedia: Two commonly used languages that support many kinds of implicit conversion are C and C++, and it is sometimes claimed that these are weakly typed languages. However, ...
5
votes
4answers
623 views

Why do programming language allow assignment from integer to shortint?

program TypeCategory; {$R+} var sInt : shortint; iInt : integer; begin readln(iInt); sInt := iInt; writeln(sInt); end. Considering the above example,pascal language do allow ...
2
votes
5answers
145 views

Is checking for true explicity bad by design?

Is it considered bad to explicitly check for the boolean true. Would it be better to do a simple if(success) ? I've seen various jokes made about how if (someBoolean === true) is horrible code in a ...
2
votes
5answers
171 views

Is weak typing not necessary anymore?

I come from a statically/strongly typed language background (java), and I recently started to learn python and I think I see the value of dynamic/strongly typed language. Now I'm wondering whether ...
1
vote
2answers
112 views

Advantages of Weak Typing over Strong Typing

So, I've read a bunch of similar questions on Stack Overflow regarding this issue, and I think I have a good grasp of what the differences between the two are. My question is whether there is any ...
1
vote
2answers
499 views

Strongly-typed or weakly-typed binding in codebehind in front end?

So my question is more in relation to what people consider to be the best practice and why: I've been dropping literals into pages and repeaters and binding them in code behind for a while. Is this ...
0
votes
2answers
666 views

Accessing Facebook C# SDK result Object using .NET 3.5 API?

Consider the following in .NET 3.5 (using the Bin\Net35\Facebook*.dll assemblies): using Facebook; var app = new FacebookApp(); var result = app.Get("me"); // want to access result properties with ...
0
votes
6answers
2k views

(strongly vs weakly) typed AND (statically vs dynamically) typed languages and Moore's law

I do not know how many faces this problem. If I do programming in weakly/dynamically typed language like python,php,javascript for few days I lose touch with strongly typed languages like ...