The weakly-typed tag has no wiki summary.
-8
votes
6answers
278 views
Is C# a strongly typed or a weakly typed language? [duplicate]
Can someone please clarify if C# a strongly typed or a weakly typed language? And explain the answer why.
if I have a function called concat that can take any object is this then considered weakly ...
2
votes
3answers
83 views
C# interchangeable properties
I'm trying to create a substitute for kind of property, that accepts multiple types as inputs/outputs.
Here is some pseudo code of one ugly solution:
http://pastebin.com/gbh4SrZX
Basically i have ...
0
votes
2answers
99 views
RavenDB: Adding documents from weakly-typed objects
I'm trying to figure out how to insert weakly-typed objects as RavenDB documents.
For example, I would like to insert a Datatable as a document:
Each row is mapped to a single document
The columns ...
108
votes
9answers
4k views
Seeking clarification on apparent contradictions regarding weakly typed languages
I think I understand strong typing, but every time I look for examples for what is weak typing I end up finding examples of programming languages that simply coerce/convert types automatically.
For ...
0
votes
4answers
132 views
MVC architecture and weakly typed languages (for instance PHP) Is model unnecessary?
Shouldn't models just describe data that will be passed from a controller to a view? Doesn't that make models unnecessary in weakly typed languages? In PHP, they are doing DB work in models, but isn't ...
2
votes
4answers
580 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 ...
2
votes
5answers
2k 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 ...
0
votes
2answers
1k 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 ...
2
votes
5answers
217 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
685 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 ...
5
votes
5answers
695 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 ...
0
votes
6answers
2k views
(strongly vs weakly) typed AND (statically vs dynamically) typed languages and Moore's law [closed]
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 ...
29
votes
16answers
8k 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,
...
