Tagged Questions

A default, in computer science, refers to a setting or value automatically assigned to a software application, computer program or device, outside of user intervention.

learn more… | top users | synonyms

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 ...
29
votes
14answers
9k views

C default arguments

Is there a way to specify default arguments to a function in C?
25
votes
2answers
245 views

Is it a good idea to use a switch with fallthrough to handle default arguments in Javascript?

I have recently learned that you can use a switch statement with fallthrough to set default arguments in Javascript: function myFunc(arg1, arg2, arg3) { switch (arguments.length) { case 0 ...
19
votes
3answers
2k views

C# 4.0: Can I use a TimeSpan as an optional parameter with a default value?

Both of these generate an error saying they must be a compile-time constant: void Foo(TimeSpan span = TimeSpan.FromSeconds(2.0)) void Foo(TimeSpan span = new TimeSpan(2000)) First of all, can ...
19
votes
10answers
9k views

How to populate/instantiate a C# array with a single value?

I know that instantiated arrays of value types in C# are automatically populated with the default value of the type (eg false for bool, 0 for int, etc etc). Is there a way to autopopulate an array ...
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 ...
16
votes
8answers
494 views

How can I avoid std::vector<> to initialize all its elements?

EDIT: I edited both the question and its title to be more precise. Considering the following source code: #include <vector> struct xyz { xyz() { } // empty constructor, but the compiler ...
14
votes
2answers
1k views

How to create default value for function argument in Clojure

I come with this: (defn string->integer [str & [base]] (Integer/parseInt str (if (nil? base) 10 base))) (string->integer "10") (string->integer "FF" 16) But it must be a better way to do this.
14
votes
5answers
6k views

Default value of an Objective-C struct and how to test

I'm trying to test if a property has been set yet. I know that with objects that I've got: CGRect ppGoalFrame; LocalPlaySetup *localPlaySetup; and I can test if (localPlaySetup == nil) but if I ...
13
votes
6answers
602 views

Enum default value for Java enum annotation value

Java allows enum as values for annotation values. How can I define a kind of generic default enum value for an enum annotation value? I have considered the following, but it won't compile: ...
13
votes
4answers
7k views

Using a constant NSString as the key for NSUserDefaults

I'm using NSUSerDefaults to store user preferences. I remember reading somewhere that setting the keys as constants is a good idea - and I agree. The following code is what I currently have: ...
10
votes
3answers
335 views

C++ template function gets erronous default values

I have hit upon a real brain scorcher in C++, it has never happened to me before. The gist of the problem is that upon invocation of my (template) function the arguments I have defined defaults for ...
10
votes
2answers
5k views

JQuery ajax call default timeout value

I got a bug report that I can't duplicate, but ajax-call timeout is the current best guess. So I'm trying to find out the default value for timeout of a jQuery $.ajax() call. Anybody have an idea? ...
10
votes
9answers
14k views

Default value to a parameter while passing by reference in C++

Is it possible to give a default value to a parameter of a function while we are passing the parameter by reference. in C++ For eg. when i try to declare a function like virtual const ULONG ...
9
votes
5answers
140 views

Default values for array arguments

Just playing around a little with C++. What I really want to do is to be able to setup a function with default values defined for an array or pointer argument. To keep things simple, let's just use an ...
8
votes
9answers
351 views

Nonstatic member as a default argument of a nonstatic member function

struct X { X():mem(42){} void f(int param = mem) //ERROR { //do something } private: int mem; }; Can anyone give me just one reason as to why the hell this is illegal in C++?! ...
8
votes
2answers
1k views

Ruby: Can lambda function parameters have default values?

I want to do something similar to this: def creator() return lambda { |arg1, arg2 = nil| puts arg1 if(arg2 != nil) puts arg2 ...
8
votes
6answers
9k views

Delete default value of an input text on click

I have an input text : <input name="Email" type="text" id="Email" value="email@abc.com" /> I want to put a default value like "What's your programming question ? be specific." in ...
8
votes
2answers
3k views

Unknown file type MIME?

Do I have to specify a MIME type if the uploaded file has no extension? In other words is there a default general MIME type?
7
votes
2answers
120 views

Testing optional arguments in PHP

I have a few "setter" methods across classes, and for convenience I've added an optional parameter $previous, which takes an argument by reference and populates it with the existing value before ...
7
votes
4answers
395 views

How can I obtain the default value for a type in Scala?

I'm trying to write a Scala function that returns the default value of a type (0, 0.0, false, '\0', etc. for value types and null for reference types). I came up with this: def defaultValue[U]: U = { ...
7
votes
1answer
203 views

Why contract is malformed when using default(Type)?

When compiling code which uses code contracts, I have a very strange error I don't understand. [ContractInvariantMethod] private void ObjectInvariant() { Contract.Invariant( ...
7
votes
4answers
2k views

Why can't a text column have a default value in MySQL?

If you try to create a TEXT column on a table, and give it a default value in MySQL, you get an error (on Windows at least). I cannot see any reason why a text column should not have a default value. ...
7
votes
3answers
260 views

Is it possible for an optional argument value to depend on another argument in Scala

Does anyone know if something like this is possible in Scala: case class Thing(property:String) def f(thing:Thing, prop:String = thing.property) = println(prop) The above code doesn't compile; ...
7
votes
7answers
241 views

What is the scope of a defaulted parameter in Python?

When you define a function in Python with an array parameter, what is the scope of that parameter? This example is taken from the Python tutorial: def f(a, L=[]): L.append(a) return L print ...
7
votes
3answers
3k views

How would I skip optional arguments in a function call?

OK I totally forgot how to skip arguments in PHP. Lets say I have: checkbox_field ( $name, $value = '', $checked = false, $compare = '', $parameter = '' ) How would I call this function and ...
7
votes
4answers
5k views

Returning a default value. (C#)

I'm creating my own dictionary and I am having trouble implementing the TryGetValue function. When the key isn't found, I don't have anything to assign to the out parameter, so I leave it as is. ...
6
votes
0answers
96 views

Record syntax default value for accessor

As I was writing up an answer just now, I ran across an interesting problem: data Gender = Male | Female deriving (Eq, Show) data Age = Baby | Child | PreTeen | Adult deriving ...
6
votes
5answers
317 views

Set an enum to its default value

I'm sure this is fairly trivial but I can't get it right. public static string DoSomething(this Enum value) { if (!Enum.IsDefined(value.GetType(), value)) { // not a valid value, ...
6
votes
1answer
751 views

OptionalAttribute parameter's default value?

MSDN's VS2010 Named and Optional Arguments (C# Programming Guide) tells us about optional parameters in C#, showing code like I'd expect: public void ExampleMethod(int required ...
6
votes
5answers
215 views

Is it bad practice to initialize a variable to a dummy value?

This question is a result of the answers to this question that I just asked. It was claimed that this code is "ugly" because it initializes a variable to a value that will never be read: String ...
6
votes
2answers
289 views

derived class as default argument g++

Please take a look at this code: template<class T> class A { class base { }; class derived : public A<T>::base { }; public: int f(typename A<T>::base& arg = typename ...
6
votes
7answers
15k views

C/C++ initialization of a normal array with one default value

http://www.fredosaurus.com/notes-cpp/arrayptr/array-initialization.html 1: Page above has a nice list over initialization of arrays. So I have a int array[100] = {-1}; expecting it to be full ...
6
votes
4answers
4k views

Is it possible to have a default parameter for a mysql stored procedure?

I have googled this and keep coming up with "No it is not possible" but these posts were dated 2005-2007 so I'm wondering if this has been changed. A code example: CREATE PROCEDURE `blah` ( ...
5
votes
1answer
134 views

How do I represent an empty Char in Scala?

val mychar='' Does not compile and results in the following error: error: unclosed character literal val mychar='a' etc is fine. I've tried playing around with converting "" to char but ...
5
votes
1answer
130 views

Setting default argument value in Racket

Is it possible to set a default value to some of arguments in Racket? Like so in Python: def f(arg=0) ...
5
votes
1answer
254 views

c++ enum variable default value

The question is simple: #include <iostream> enum SomeEnum { EValue1 = 1, EValue2 = 4 }; int main() { SomeEnum enummy; std::cout << (int)enummy; } What will be the ...
5
votes
2answers
163 views

Default constructor defined with default arguments outside the class definition, why does this work? and what happens with templates involved?

I am aware this is bad form and that default-values should be specified in the declaration, but if you would please indulge me for a moment.. why does this compile? and what is happening exactly? ...
5
votes
3answers
157 views

php - best way to default a variable (simulate Perl ||, ||= )

I love doing this sort of thing in Perl: $foo = $bar || $baz to assign $baz to $foo if $bar is empty or undefined. You also have $foo ||= $bletch which will only assign $bletch to $foo if $foo is not ...
5
votes
8answers
196 views

How can a variable typed as an enum take a value that is out of range of its elements?

Can anyone explain to me how an a member of this enum takes a value of 0? public enum EnumLogicalOperator { And = 1, Or = 2 }
5
votes
3answers
552 views

std::map default value for build-in type

Recently, I was confused by the std::map operator[] function. In the MSDN library, it says: "If the argument key value is not found, then it is inserted along with the default value of the data type." ...
5
votes
3answers
291 views

Can I specify a default Color parameter in C# 4.0?

Here is an example function: public void DrawSquare(int x, int y, Color boxColor = Color.Black) { //Code to draw the square goes here } The compiler keeps giving me the error: Default ...
5
votes
2answers
308 views

Scala empty default closure?

just a quick question I seem to be unable to find an answer to. I have a method definition in Scala that looks like this: def execute(goals: List[String], profiles: List[String] = ...
5
votes
1answer
2k views

Default value on JSP custom-tag attribute

When defining an attribute for a custom JSP tag, is it possible to specify a default value? The attribute directive doesn't have a default value attribute. Currently I'm making do with: <%@ ...
5
votes
1answer
1k views

rails override default getter for a relationship (belongs_to)

So I know how to override the default getters for attributes of an ActiveRecord object using def custom_getter return self[:custom_getter] || some_default_value end I'm trying to achieve the same ...
5
votes
3answers
2k views

Preparing a MySQL INSERT/UPDATE statement with DEFAULT values

Quoting MySQL INSERT manual - same goes for UPDATE: Use the keyword DEFAULT to set a column explicitly to its default value. This makes it easier to write INSERT statements that assign values to ...
5
votes
4answers
7k views

“error: too few arguments to function”

I have a C program called opencv2.0 function : cvSaveImage( out_img_name, img); Compiler gcc reports that too few arguments to function cvSaveImage The prototype of cvSaveImage in highgui.h ...
5
votes
2answers
849 views

Is it possible to define a block with default arguments in Ruby?

This question deals with optional arguments passed to a Ruby block. I'm wondering if it's also possible to define arguments with default values, and what the syntax for that would be. At first ...
5
votes
5answers
527 views

Why isn't the default for cflocation addtoken equal to no?

Is there any good reason why the default for this tag would be yes? It seems to be that it should almost always be no. I am missing something?
5
votes
2answers
5k views

Display a default DataTemplate in a ContentControl when its content is null or empty?

I would think this is possible, but the obvious way isn't working. Currently, I'm doing this: <ContentControl Content="{Binding HurfView.EditedPart}"> <ContentControl.Resources> ...

1 2 3 4 5 9