2
votes
0answers
52 views
Are there any programming textbooks directly based on David Parnas’ concepts?
Some great books (like Object-Oriented Analysis and Design with Applications) cite Parnas' papers, some (like Implementation Patterns) mention them in the bibliography. I know modern OO-ness was much …
1
vote
3answers
135 views
Pragmatic Programmer Techniques - who, what, where…
Few questions. But all very much related.
1) How many of the SO crowd are using 'pragmatic programmer' tools/methods/techniques including, but not limited to (some of the obvious):
a) Source code …
12
votes
7answers
452 views
Questions every good Delphi developer should be able to answer?
Following the spirit of these questions:
How to Recruit Great Developers?
Questions every good .NET developer should be able to answer?
...it would be interesting to know recommendations or …
5
votes
3answers
178 views
How .NET differentiates reference vs primitive and value types
.NET we have primitive datatypes like int and value types like struct.
And also we have reference types. All of them seem to be derived from object class.
How .NET determine primitive, value type …
1
vote
1answer
71 views
Purpose of an ‘Identity Function’?
I came across this subject when I was reading through PrototypeJS's docs: its Identity Function. I did some further searching&reading on it and I think I understand its mathematical basis (e.g. …
0
votes
4answers
213 views
C# Private variable list
I suspect this question illustrates my lack of understanding about what's going on behind the scenes in C#, but hey...
While doing a CRM SDK project in C# that involved a number of private variables …
5
votes
2answers
472 views
“Delphi Fundamentals” in Delphi 2009
Hello,
Has anybody used/converted "Delphi Fundamentals" in Delphi 2009? - http://fundementals.sourceforge.net/
I'm using Dictionaries (cArrays.pas,cDictionaries.pas,cStrings.pas,cTypes.pas) in my …
2
votes
9answers
2k views
How do I copy an object in Java?
Consider the below code:
DummyBean dum = new DummyBean();
dum.setDummy("foo");
System.out.println(dum.getDummy()); // prints 'foo'
DummyBean dumtwo = dum;
System.out.println(dumtwo.getDummy()); // …
5
votes
10answers
630 views
Why are structs stored on the stack while classes get stored on the heap(.NET)?
I know that one of the differences between classes and structs is that struct instances get stored on stack and class instances(objects) are stored on the heap.
Since classes and structs are very …
8
votes
11answers
489 views
Help For The Copy & Paste Generation Of Coders
Hi all,
I myself am one of these types of coders, who never learned coding in a formal setting, but am instead, self-taught by the use of copy and paste scripts, and pre-authored works available …
3
votes
11answers
362 views
How and where can I learn programming? [closed]
Hello,
I know this might not be the best place to ask this but I don't know where to go,
well here it goes.
I am very interesting in programming and it always inspired a great number of curiousity …
2
votes
7answers
253 views
What are vectors and how are they used in programming?
I'm familiar with the mathematical/physics concept of a vector as a magnitude and a direction, but I also keep coming across references to vectors in the context of programming (for example C++ seems …
4
votes
17answers
569 views
Does any programmer have to know C? Yes, why? No, why?
Hi, since I was at the first year of my University I always envied my fellows (mainly coming from a tech-oriented professional school) for knowing C. I came from a natural-sciences-oriented lyceum and …
1
vote
4answers
788 views
Compare Two .NET Array objects
I am trying to compare two .NET arrays. Here is an obvious implementation for comparing arrays of bytes:
bool AreEqual(byte[] a, byte[] b){
if(a.Length != b.Length)
return false;
…
16
votes
13answers
8k views
.NET String to byte Array C#
How do I convert a string to a byte array in .NET (C#)?
Update: Also please explain why encoding should be taken into consideration. Can't I simply get what bytes the string has been stored in? Why …
