The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
44 views

Default valarray passing doesn't work

In C++, I have two functions: do_work(args, std::valarray<double> arr=std::valarray<double>(0.0, 1)) { very_complicated_things } wrapper(args, std::valarray<double> ...
-3
votes
2answers
64 views

C++ Default Arguments - Declaration [closed]

I created a function in my class. I put all my declarations in my header file and all my definitions in my .cpp . In my header : class FileReader{ public: FileReader(const char*); ...
4
votes
1answer
159 views

Lambda function as a default argument for std::function in constructor

I'd like to have a default functor for a functor parameter in the constructor of a class. As a minimal example I came up with a class which should server as a filter, which filters elements of type T ...
-2
votes
1answer
51 views

Default argument value is overriding provided argument?

I have a function in PHP, which has some arguments default to null, so that I can easily call it with less than the full number of arguments. The problem is, that when I use a null-defaulted argument ...
1
vote
2answers
107 views

Member function template argument default value

The following bit of code compiles in GCC 4.5.3 but does not compile in VS 2008 and 2010. Is this due to a VS compiler bug or does the standard forbid giving default function template argument values? ...
1
vote
2answers
53 views

Default Argument in Virtual Function [duplicate]

Please help me find the reasons behind it: #include <iostream> using std::cout; class A { public: virtual void fun(int a = 5) { cout<<a; } }; class B::public A { public: ...
5
votes
3answers
242 views

Template parameter default to a later one

This link doesn't answer my question so I'll ask it here: Basically I want to write a template function template <typename Out, typename In> Out f(In x); Here I always need to specify Out ...
1
vote
1answer
250 views

function overloading vs default argument in c++

Hi i have a confusion or to say more i need to understand something. I have a procedure and another overloaded procedure of same. string conct (string a, string b) { string str = conct(a, ...
19
votes
3answers
320 views

What if the lambda expression of C++11 supports default arguments?

I think the following code is very handy and no harmful: auto fn = [](bool b = false) -> int // NOT legal in C++11 { return b ? 1 : 0; }; Why does C++11 explicitly prohibit default ...
-1
votes
3answers
69 views

Strange behavior with a list as a default function argument [duplicate]

Possible Duplicate: “Least Astonishment” in Python: The Mutable Default Argument List extending strange behaviour Pyramid traversal view lookup using method names Let's say I have this ...
0
votes
1answer
51 views

default argument promotion of pointer

Which roles are used when i call a function with pointer argument unless declare the function before? I know that float are promoted to double and that are executed the integral promotion, but what ...
7
votes
1answer
87 views

Am I using default arguments incorrectly?

I've just started going through a beginners book of C++. I have some java experience (but having said that, I've never used default arguments in java to be honest) So, as mentioned, my issue is with ...
8
votes
2answers
103 views

How should Scala default arguments to refer to a previous positional argument?

Scala-lang reference 5.5.1 and 6.6.1 gave me the impression that a default parameter would be able to refer to a previously evaluated one: class Test(val first: String, val second: String = first) ...
0
votes
2answers
81 views

function overloading class design

My program has a Car and CarManager class that looks similar to the following: #include <list> class Car { public: void Draw() { Draw(m_opacity); } void Draw(float opacity) { } ...
-6
votes
2answers
87 views

Overloaded function gives incorrect output [closed]

The given function works fine when 2 paramaters are passed to it i.e. fromDelta(10000, 12). But when we use the overloaded form i.e. fromDelta(10, 12, 100) it gives incorrect output. inline constexpr ...
1
vote
2answers
42 views

Parent has different variable name than child

I am writing a simple Pong game. I want my Paddle and my Ball object to both inherit from DynamicObj, a parent class which has an update method which ticks the position using basic simple Euler ...
1
vote
5answers
59 views

How to use the value of a non-default argument as the default value for a default argument in Python?

Here is my class Bar: class Bar: def __init__(self, start, end, open, volume, high=open, low=open, last=open): self.start = start self.end = end self.open = open ...
0
votes
1answer
104 views

Improve code readability without performance loss

We have several classes where a call to a member function may change state and sometimes not depending on a boolean with default value. A a; a.set( "foobar" ); assert( a.changed() == true ); ...
11
votes
1answer
209 views

In C++, is a constructor with only default arguments a default constructor?

In the following code: struct Foo { Foo(int x=0); }; Does the constructor count as a default constructor?
0
votes
1answer
65 views

Default parameter in python with objects

I know I can define default parameters in python, but can I do so with objects? For example, I'd like to work with a p.expect object: def exitDevice(ip, m='', sendExit=True): if sendExit: ...
1
vote
3answers
174 views

bind to a funciton that takes default arguments and call it

How can I bind to a function that takes default arguments, without specifying the default arguments and the call it without any arguments? void foo(int a, int b = 23) { std::cout << a ...
3
votes
1answer
188 views

C++ macro and default arguments in function

Im trying to make a generic function to display error messages, with the possibility that the program should exit after the message has been displayed. I want the function to show the source file and ...
1
vote
7answers
144 views

What would be a proper invalid value for a pointer?

Suppose I have this code. Your basic "if the caller doesn't provide a value, calculate value" scenario. void fun(const char* ptr = NULL) { if (ptr==NULL) { // calculate what ptr value should ...
15
votes
3answers
326 views

Why does using this C++ function twice in one line cause a compile error?

I ran into some trouble trying to implement a smart equality test macro-type template function in Visual C++ 2010 that had to do with a bug in VS in regard to default arguments of template functions. ...
3
votes
3answers
346 views

Specifying default parameters C++

I have written the following class class worker { int action; int doJob(int type,int time = 0); public: int call(); } And the function doJob is like int worker::doJob(int type,int time ...
0
votes
4answers
211 views

“TypeError: CreateText() takes exactly 8 arguments (5 given)” with default arguments

def CreateText(win, text, x, y, size, font, color, style): txtObject = Text(Point(x,y), text) if size==None: txtObject.setSize(12) else: txtObject.setSize(size) if ...
0
votes
3answers
216 views

Concatenation of strings in a default argument

This is a piece of my code... def contactMaster(data="",url= str(chosenMaster)+"todolist"): print "url: "+url It prints only "todolist" instead of "http://www.mysite.com/blah/1234/todolist" ...
1
vote
1answer
103 views

Will default arguments at an arbitrary point in the argument list ever be possible?

Hopefully whoever reads this knows about default arguments: void setCase (string &str, int form = UPPERCASE) { for (char &c : str) c = (form == UPPERCASE ? c & ~0x20 : c | ...
2
votes
4answers
103 views

Why existing function arguments cannot be used to evaluate other default arguments?

I was writing a function foo() which takes 2 const char*s as arguments, pBegin and pEnd. foo() is passed a null terminated string. By default pEnd points to \0 (last character) of the string. void ...
2
votes
1answer
152 views

numpy subclass will not accept arguments to __new__ from pythonically inheriting class

I've created a subclass of ndarray called "Parray" which takes two arguments: p, and dimensionality. It works fine on its own. Now, I want to create a class called SirPlotsAlot, which inherits Parray ...
2
votes
4answers
228 views

How can I cleanly specify which arguments I am passing and which remain default?

Asked because of this: Default argument in c++ Say I have a function such as this: void f(int p1=1, int p2=2, int p3=3, int p4=4); And I want to call it using only some of the arguments - the rest ...
1
vote
3answers
870 views

Python : How to pass default argument to instance method with an instance variable?

My Code : class c: def __init__(self, format): self.format = format def process(self, formatting=self.format) print formatting Error : name 'self' is not defined I want : ...
5
votes
1answer
112 views

Is there a way to have dynamic default arguments?

I'm trying to make a class where the user can modify member variables to change the default arguments of its member functions. class Class { public int Member; public void Method(int ...
3
votes
1answer
472 views

php function how to set default value as object?

A function(actually constructor of another class) needs an object of class temp as argument. So I define interface itemp and include itemp $obj as function argument. This is fine, I must pass class ...
5
votes
1answer
132 views

Preventing instantiation of unused default function arguments

Lets say I have a function which takes a function pointer as a parameter, and that parameter has a default argument. template <typename T> T* default_construct() { return new T(); } ...
0
votes
1answer
72 views

Default values for arguments [duplicate]

Possible Duplicate: “Least Astonishment” in Python: The Mutable Default Argument Consider the following function: def foo(L = []): L.append(1) print L Each time I call ...
7
votes
2answers
577 views

how to use overloaded functions with default arguments in algorithms?

I know the answer to the frequently-asked how to specify a pointer to an overloaded function?: either with assignment or with a cast, and every other C++ tutorial uppercases a string like this (give ...
2
votes
2answers
978 views

Problem with bounded type parameterised case class and default args in Scala

Consider the following (tested with Scala 2.8.1 and 2.9.0): trait Animal class Dog extends Animal case class AnimalsList[A <: Animal](list:List[A] = List()) case class AnimalsMap[A <: ...
8
votes
3answers
185 views

Is it possible to use default arguments and a variable number of arguments in a single function?

For example, something like this: #include <cstdarg> void my_function(int it=42, ...) { /* va_list/start/arg/end code here */ } What exactly does the above code mean in C++? It compiles ...
2
votes
1answer
153 views

C++ default arguments in function overload evaulated once or each time?

I have a question on defaults for overload functions in an object. If I have a function signature as follows will the default value be evaluated only once or each time? class X { public: f(const ...
32
votes
2answers
1k views

Default argument in the middle of parameter list?

I saw a function declaration in our code that looked as follows void error(char const *msg, bool showKind = true, bool exit); I thought first that this is an error because you cannot have default ...
1
vote
1answer
105 views

Issue with Default Arguments

In the Book C++ Primer by Stanley B. Lippman*,* Josée Lajoie in Chapter 14.2 of Class Constructors it states: Should we also provide support for specifying an opening balance but no client name? As ...
38
votes
6answers
12k views

Where to put default parameter value in C++?

What's the place for the default parameter value? Just in function definition, or declaration, or both places?
3
votes
2answers
147 views

Idiomatic way of specifying default arguments whose presence/non-presence matter

I often see python code that takes default arguments and has special behaviour when they are not specified. If I for example want behavior like this: def getwrap(dict, key, default = ??): if ...
8
votes
2answers
676 views

Python: Can I use a class attribute as a default value for an instance method?

I am writing a new class in Python (2.5). My immediate goal is to: GOAL: Use the value of a class (static) attribute as the default value for an instance attribute I can add logic to the __init__ ...
1
vote
5answers
273 views

Where should default parameters be specified?

At my workplace, usually default parameters are specified in the declaration.What is the normal custom? Should I specify default parameters in method declaration or method definition? EDIT: Is there ...
6
votes
4answers
3k views

Using default value when calling a function

In PHP you can call a function. by not calling all parameters by using these statement. function test($t1 ='test1',$t2 ='test2',$t3 ='test3') { echo "$t1, $t2, $t3"; } And you can just use the ...