Tagged Questions
The default tag has no wiki summary.
88
votes
8answers
48k 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 ...
58
votes
6answers
57k 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?
49
votes
6answers
8k views
C# - Programmatic equivalent of default(Type)
I'm using reflection to loop through a Type's properties and set certain types to their default. Now, I could do a switch on the type and set the default(Type) explicitly, but I'd rather do it in one ...
32
votes
4answers
594 views
Is there a reference of default keyboard behaviours for Silverlight 4 controls?
In the official Microsoft documentation there's only one paragraph mentioning how controls behave to keyboard (at least what I could find):
...
31
votes
3answers
11k views
Rails migrations: Undo default setting for a column
Hi Stack Overflow Community!
I have the problem, that I have an migration in Rails that sets up a default setting for a column, like this example:
def self.up
add_column :column_name, :bought_at, ...
24
votes
3answers
540 views
C++: Default keyword (classes, not switch)
I've seen default used next to function declarations in a class. What does it do?
class C {
C(const C&) = default;
C(C&&) = default;
C& operator=(const C&) & = default;
...
19
votes
11answers
15k views
Default Arguments in Matlab
Is it possible to have default arguments in Matlab? For instance, here:
function wave(a,b,n,k,T,f,flag,fTrue=inline('0'))
I would like to have the true solution be an optional argument to the wave ...
18
votes
6answers
939 views
Default value of a type
For any given type i want to know its default value.
In C#, there is a keyword called default for doing this like
object obj = default(Decimal);
but I have an instance of Type (called myType) and ...
18
votes
2answers
931 views
What is the equivalent in F# of the C# default keyword?
I'm looking for the equivalent of C# default keyword, e.g:
public T GetNext()
{
T temp = default(T);
...
Thanks
17
votes
4answers
307 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 ...
15
votes
3answers
14k views
How do I make a default value for a parameter to a javascript function [closed]
Possible Duplicate:
Is there a better way to do optional function parameters in Javascript?
I would like a javascript function to have optional arguments which I set a default on, which gets ...
13
votes
10answers
825 views
Should switch statements always contain a default clause?
In one of my first code reviews (a while back), I was told that it's good practice to include a default clause in all switch statements. I recently remembered this advice but can't remember what the ...
13
votes
2answers
3k views
WPF : Define binding's default
In WPF, I would like to be able to template how my bindings are applied by default.
For instance, I want to write :
Text="{Binding Path=PedigreeName}"
But it would be as if I had typed :
...
12
votes
3answers
10k views
Android Preferences: How to load the default values when the user hasn't used the preferences-screen?
I am using a PreferenceActivity to let the user set some values.
I am feeding it the xml file with the defined preferences.
I have set all the android:defaultValue="" for them.
When I start my ...
12
votes
7answers
3k views
setting ruby hash .default to a list
i thought i understood what the default method does to a hash...
give a default value for a key if it doesn't exist
irb(main):001:0> a = {}
=> {}
irb(main):002:0> a.default = 4
=> 4
...
11
votes
2answers
6k views
Android: change default Home Application
for some specific requirement
I am required to change Android Default Home application
with my customized Home application ( a setting inside my app that will toggle default home = my application or ...
11
votes
12answers
3k views
Why doesn't the C++ default destructor destroy my objects?
The C++ specification says the default destructor deletes all non-static members. Nevertheless, I can't manage to achieve that.
I have this:
class N {
public:
~N() {
std::cout << ...
11
votes
6answers
2k 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.
10
votes
3answers
306 views
how 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 ...
9
votes
2answers
735 views
iOS 5: Can I have my app “In Notification Center” by default?
I have an iPad app in the App Store whose logic relies largely on local notifications. In other words, much that happens inside the app is triggered by the delegate method application ...
9
votes
5answers
205 views
Use of var and default for declaration in C#
Recently I saw a person heavily using var and default keywords for declaration of variables (and for every declaration), something like this:
var employee = default(Employee); //Employee is a class
...
9
votes
5answers
622 views
Why does the Scala compiler disallow overloaded methods with default arguments?
While there might be valid cases where such method overloadings could become ambiguous, why does the compiler disallow code which is neither ambiguous at compile time nor at run time?
Example:
// ...
9
votes
3answers
2k views
default value for a static property
I like c#, but why can I do :
public static bool Initialized { private set; get; }
or this :
public static bool Initialized = false;
but not a mix of both in one line ?
I just need to set ...
9
votes
2answers
2k views
Error setting a default null value for an annotation's field
Why am I getting an error "Attribute value must be constant". Isn't null constant???
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface SomeInterface {
Class<? ...
8
votes
3answers
117 views
Nested Default Maps in Scala
I'm trying to construct nested maps in Scala, where both the outer and inner map use the "withDefaultValue" method. For example, the following :
val m = HashMap.empty[Int, ...
8
votes
5answers
822 views
Default implementation or abstract method?
Is it better to put a default implementation of a method in a superclass, and override it when subclasses want to deviate from this, or should you just leave the superclass method abstract, and have ...
8
votes
1answer
520 views
C++ Template Default Constructor
I got a little problem with templates:
template <typename T>
T Func(){
std::string somestr = "";
// somestr = ...
if (somestr != ""){
return ...
8
votes
3answers
1k views
What is an iterator's default value?
For any STL container that I'm using, if I declare an iterator (of this particular container type) using the iterator's default constructor, what will the iterator be initialised to?
For example, I ...
8
votes
3answers
2k views
TimeZone.setDefault changes in JDK6
I just noticed that JDK 6 has a different approach to setting a default TimeZone than JDK5.
Previously the new default would be stored in a thread-local variable. With JDK6 (I just reviewed ...
8
votes
3answers
2k views
Is there a reasonable approach to “default” type parameters in C# Generics?
In C++ templates, one can specify that a certain type parameter is a default. I.e. unless explicitly specified, it will use type T.
Can this be done or approximated in C#?
I'm looking for something ...
8
votes
3answers
1k 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 ...
7
votes
2answers
1k views
how do I set a column to be the default sort column with Telerik RadGridView in Silverlight
I have a RadGridView control in a silverlight project and would like to have the grid come up sorted by the name column. I tried placing the attribute SortingState="Ascending" on the column ...
7
votes
7answers
450 views
C#'s default keyword equivalent in C++?
In C# I know you can use the default keyword to assign default values as 0 to value types and null to reference types and for struct types individual members are assigned accordingly. To my knowledge ...
7
votes
1answer
184 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({})
...
7
votes
3answers
1k 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 ...
6
votes
1answer
54 views
using localtime inside moose default values
What's wrong with the code below ? When run, I get: "Use of uninitialized value in concatenation (.) or string at ./main.pl line 14"
#!/usr/bin/perl
package Test;
use Moose;
has 'message' ...
6
votes
5answers
193 views
Pros and cons of package private classes in Java?
I am learning Java recently, and I came across the notion of package-private classes, which is the default if we don't specify anything. But then I realized:
I seldom see the use of package-private ...
6
votes
2answers
126 views
How to use a variable as default value of a TCL proc argument
I've got a variable that I would like to use as default value for an argument:
proc log {message {output $::output}} {
....
}
Is there a way to do this or need I to evaluate the variable inside ...
6
votes
6answers
209 views
typedef a template with all default arguments
I declare a templated class with all parameters having default arguments, for example:
template<typename TYPE = int>
class Foo {};
Then the following two are equivalent:
Foo<int> one;
...
6
votes
2answers
228 views
Default parameter for a list reference
In C++, how would I specify a default value for a list reference in a function?
void fun(
std::list<My_Object *> &the_list,
int n = 4
)
6
votes
2answers
333 views
Can't I define defaults if I define multiple overloaded constructors in Scala?
I've defined multiple constructors, with some default argument values in all of them. Looks correct (I can't see any ambiguity), but Scala (2.8) compiler complains:
multiple overloaded ...
6
votes
4answers
330 views
default method argument with class property?
I'm using php 5.2.6. I want to have a default value for an argument in a method, but it seems I'm getting a bit too clever.
The class property `blnOverwrite' is defaulted an settable elsewhere in the ...
6
votes
2answers
566 views
How to Start/Stop Default Web Site and Apllication Pools in IIS7 programmatically
I want to Start/Stop the Default Web Site and any Application Pool of the IIS7 programmatically in C#
Knows anyone how to do this, is there any library??
Thank you very much
6
votes
4answers
377 views
Please tell me what is use of “default” keyword in c#.net
I have got following code:
I have a enum:
public enum HardwareInterfaceType
{
Gpib = 1,
Vxi = 2,
GpibVxi = 3,
}
and m using this enum like this :
HardwareInterfaceType type = ...
6
votes
2answers
2k views
MVVM Focus To Textbox
How would I set focus to a textbox without specifying the name for that textbox? At the moment I am doing the following
<Window FocusManager.FocusedElement="{Binding ElementName=Username}">
...
6
votes
2answers
648 views
map<int,int> default values
std::map<int,int> mapy;
++mapy[5];
Is it safe to assume that mapy[5] will always be 1? I mean, will mapy[5] always get the default value of 0 before '++', even if not explicitly declared, as ...
6
votes
6answers
256 views
For HTTP responses with Content-Types suggesting character data, which charset should be assumed by the client if none is specified?
If no charset parameter is specified in the Content-Type header, RFC2616 section 3.7.1 seems to imply ISO8859-1 should be assumed for media types of subtype "text":
When no explicit charset ...
6
votes
2answers
2k views
WPF ControlTemplate: How to provide a default value for TemplateBinding?
I am writing a WPF control that subclasses a Button. I then provide a default style in Themes\generic.xaml, that looks like this (simplified):
<Style TargetType="{x:Type ...
6
votes
7answers
9k 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 ...
6
votes
5answers
12k views
How do I change the default author for accessing a local SVN repository?
I use TortoiseSVN to access file based local repo. In all my commits an author is my windows login name. Is it possible to use different name?
I know how to change author after commit but how to ...