13
votes
4answers
208 views
Why do I have to assign a value to an int in C# when defaults to 0?
This works:
class MyClass
{
int a;
public MyClass()
{
int b = a;
}
}
But this gives a compiler error ("Use of unassigned local variable 'a'"):
class MyClass
{
public …
7
votes
6answers
1k views
Does Java support default parameter values?
I came across some Java code that had the following structure:
public MyParameterizedFunction(String param1, int param2)
{
this(param1, param2, false);
}
public MyParameterizedFunction(String …
6
votes
2answers
122 views
is there a way to get the default value of a type if the type is only known as System.Type?
If I want a method that returns the default value of a given type and the method is generic I can return a default value like so:
public static T GetDefaultValue()
{
return default(T);
}
Can I do …
6
votes
6answers
6k views
In Java, what’s the difference between public, default, protected, and private?
Are there clear rules on when to use each of these when making classes and interfaces and dealing with inheritance?
5
votes
1answer
71 views
Why does Hash.new({}) hide hash members?
Ok, so I wanted to create a hash which has an empty hash as the default value. A bit weird, I know, but let's say that I thought it might be useful.
So here's what I did:
>> a = Hash.new({})
…
5
votes
3answers
383 views
Default using directives in new C# files
Why does Visual Studio 2008 automatically insert the following using directives into each new C# file I create?
using System;
using System.Collections.Generic;
using System.Text;
What's so …
5
votes
6answers
424 views
Browser’s Default CSS
Are there any lists of browser CSS defaults? (browser stylsheets in tabular form)
I want to know the default font of textareas across all browsers and also for future reference.
4
votes
2answers
158 views
Require a default constructor in java?
Is there any way to require that a class have a default (no parameter) constructor, aside from using a reflection check like the following?
(the following would work, but it's hacky and reflection is …
4
votes
7answers
925 views
Set Default DateTime Format c#
Is there a way of setting or overriding the default DateTime format for an entire application. I am writing an app in C# .Net MVC 1.0 and use alot of generics and reflection. Would be much simpler …
4
votes
7answers
267 views
C++: member pointer initialised?
Code sample should explain things:
class A
{
B* pB;
C* pC;
D d;
public :
A(int i, int j) : d(j)
{
pC = new C(i, "abc");
} // note pB is not initialised, e.g. …
4
votes
2answers
125 views
Is it safe to delete the 3 default databases created during a PostgreSQL install?
I installed a default installation of PostgreSQL 8.4 on Windows 2003 Server, using the one-click installer provided. Running psql -l for the first time, I noticed there are three databases installed …
4
votes
8answers
423 views
Why should default parameters be added last in C++ functions?
Why should default parameters be added last in C++ functions?
4
votes
7answers
374 views
Are default parameters bad practice in OOP?
Do default parameters for methods violate Encapsulation?
What was the rationale behind not providing default parameters in C#?
4
votes
10answers
457 views
What for should I mark private variables as private if they already are?
Hello.
As far as I know, in C# all fields are private for default, if not marked otherwise.
class Foo
{
private string bar;
}
class Foo
{
string bar;
}
I guess these two declarations are …
4
votes
4answers
372 views
What’s the worst default you’ve encountered in a software product/language? [closed]
I hated it when some users of my program (made in crystal reports) deemed that it is "too strict" when they saw hour and minute on invoice date.
It turned out that when you drag a date to crystal, …
