The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
11 views

function call with default parameter

Today I got out my examination about C++ programming. There was one question where I and my professor didn't find together. The question was if the following function works or not. I said of course ...
3
votes
3answers
169 views

Why doesn't the C# compiler get confused about methods that have default arguments? [duplicate]

Why doesn't the C# compiler get confused about methods that have default arguments? In the below code SayHello() may refer to: SayHello() SayHello(string arg1 = null) SayHello(string arg1 = null, ...
0
votes
1answer
28 views

Net::ftp getbinaryfile() saving to file vs saving to variable

Using the following ftp_download method works, but if I change ftp.getbinaryfile(file,localdir,1024) #=> Saves the file to localdir to ftp.getbinaryfile(file) #=> returns nil I get ...
1
vote
2answers
52 views

Default function parameters in C [duplicate]

I'm trying to make a indexOf function in C. The function must find the position of any letter OR word which given in parameters. But when i tried to use one them, the compiler would alert as "too few ...
1
vote
1answer
187 views

Why C++ CLI has no default argument on managed types?

The following line has the error Default argument is not allowed. public ref class SPlayerObj{ private: void k(int s = 0){ //ERROR } } Why C++ has no default argument on managed types ? I ...
1
vote
1answer
59 views

How to make scaladoc show default parameter values?

I have many methods like def foo(..., ..., runFinalizer: Boolean = true) (implicit finalizer: Finalizer): Result = ... But when I run scaladoc (using sbt), it doesn't document that ...
2
votes
1answer
227 views

Default Parameter PageSize A4 C# using itextsharp

Is it possible to set values for default parameters for PageSize in C#? For example: public virtual void Render(string reportTitle, Rectangle pageSize = PageSize.A4) { foreach (Page p in pages) ...
-2
votes
2answers
55 views

C++ default constructors and default parameters

If I have a class containing: foo(); //sets baz to 10 foo(int bar = 0); //sets baz to bar int baz; Will the 'default' constructor ever be used? e.g. will: foo qux; default to baz = 0 or 10? ...
3
votes
5answers
91 views

Function Default Parameters in C++

I've been asked this question in a job interview, and even after compiling it, I still don't understand the outcome... I have the following class: class Point { public: Point(double x = 0, ...
2
votes
2answers
47 views

Is it valid to have default template arguments that are dependent on earlier arguments?

For example, the following snippet compiles in VC++ 2010: template<int Rows, int Columns = Rows> struct Matrix { }; Matrix<4> m; Note that the default argument for Columns depends on ...
0
votes
2answers
24 views

Defining the default value for a ULONG& optional parameter as 0

The following function declaration: void Foo:DoSomething( ULONG &Count = 0) { .... } Results in the following compile time error error C2440: default argument cannot convert from 'int' to ...
5
votes
3answers
210 views

Can an unnamed parameter of function have a default value?

Is the following code legal in C++? void f(void* = 0) {} int main() { f(); } Which page of the C++ standard states that this usage is legal?
0
votes
1answer
61 views

Template functions as default template parameters

My class declaration begins as follows: template< class P, class B, class comparePosition = compareHorizontal< P > > class BlahBlah { ... where compareHorizontal is a ...
0
votes
2answers
96 views

c++ float array as default parameter

I'm quite new to c++ and I don't manage to make this works. Sorry but i have always worked with languages that didn't helped me to think in terms of memory pointers ans so maybe this is a fooly ...
0
votes
1answer
88 views

having default arguments for passed references in C++

I have a number of functions that take references to typedef'd data types, as below: typedef std::map<string, string> dict; union ret_t{ int i; long l; double d; }; ret_t ...
0
votes
1answer
26 views

Rationale behind constraining default parameters as compile-time constants

I am wondering why this would not compile: public static void SomeFunction(Guid someGuid = Guid.NewGuid()) { // Do stuff } with the message "Default parameter value for ...
5
votes
4answers
125 views

Why can member variables not be used as defaults for parameters? [duplicate]

Possible Duplicate: Nonstatic member as a default argument of a nonstatic member function Correct me if I am wrong, but the way I think default parameters work is this: When the compiler ...
0
votes
1answer
48 views

Python 3: Giving a command to set attribute of self in __init__ with need to use “self”?

I know the question header sounds weird, but since English is not my first language, I find it very hard to formalize. However, I might be able to explain it with bit more text. The problem is, that ...
11
votes
1answer
170 views

Method resolution issue with default parameters and generics

Using .NET 4, I am confused by the inability of the compiler to resolve the first method call in the sample below. using System; namespace MethodResolutionTest { class Program { ...
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) ...
1
vote
4answers
228 views

Default Values for function parameters in Python [duplicate]

Possible Duplicate: default value of parameter as result of instance method While it is possible to set default values to function parameters in python: def ...
3
votes
2answers
302 views

C#, default parameter value for an IntPtr

I'd like to use a default parameter value of IntPtr.Zero in a function that takes an IntPtr as an argument. This is not possible as IntPtr.Zero is not a compile time constant. Is there any way I can ...
1
vote
1answer
213 views

Redefinition of default template parameter

I have a strange compilation warning for the following code, with Visual C++ 2010: #include <iostream> class test { public: template<class obj> class inner { ...
0
votes
2answers
89 views

С++ Creating an instance of a class [duplicate]

Possible Duplicate: Default constructor with empty brackets Instantiate class with or without parentheses? Program: class Foo { public: Foo ( int bar = 1 ) { cout ...
3
votes
3answers
98 views

default argument mismatch in C++?

Consider the following code: #include <iostream> class Bar { public: void foo(bool b = false, std::string name = ""); }; void Bar::foo(bool b, std::string name) { if (!b) { ...
2
votes
2answers
154 views

passing on default parameter in scala?

Please consider the following example def foo(a: Int, b: Int = 100) = a + b def bar(a: Int, b: Int = 100) = foo(a, b) * 2 This works, but note I have to supply the same default value to b in both ...
4
votes
4answers
2k views

Getting Eclipse to open .html in text-editor by default?

Eclipse Juno keeps opening my HTML files in a embedded web-browser, rather than in an embedded syntax-highlighting editor. I have installed: Web Page Editor Eclipse Web Developer Tools PyDev for ...
3
votes
3answers
114 views

Default template parameters: Why does the compiler complain about not specifying template argument?

I have this code: struct A{}; template<class T = A> struct B{ void foo(){} }; B b; //error: missing template arguments before 'b' //error: expected ';' before 'b' //more errors ...
2
votes
1answer
98 views

Best design to avoid “local variable as default parameter”?

I'm writing an approximation function taking two different tolerance values as parameters: bool Approximate(vector<PointC*>* pOutput, LineC input, double horizontalTolerance, double ...
4
votes
3answers
185 views

Code executes derived class method, but gets default parameter from base class method

Can someone explain why the result of the code below would be "class B::1" ? Why does the virtual method of derived class uses the default parameter of a base class and not his own? For me this is ...
2
votes
3answers
153 views

Why can't I use String.Empty as a default parameter value?

Today I was creating a default parameter value in a constructor. public SomeClass (String something = String.Empty) { // ... } The compiler complained. Default parameter value for ...
0
votes
2answers
36 views

Failure default param in UnitTests

In my project I have two files Products.h and .m. If I build project and run, I dont get any warnings & errors. But when I run tests. I catch an error on this piece of source code: NSArray* ...
3
votes
1answer
736 views

Passing variable name as string to function with default parameters

Let’s say there is a debugging function, simplified here as: void DumpString(char* var, char* varname) { printf("%s : '%s'\n", varname, var); } char str[10]="foobar"; DumpString(str, "str"); ...
0
votes
1answer
91 views

Lightweight JavaScript Module for Optional/Default Parameters

Is there a JavaScript module that makes it easy to map arguments to parameters? Here is how I envision it working: var arguments = assignArguments(arguments, 'p1', 'p2', [{'p3': 0}, 'p4'], ...
2
votes
3answers
94 views

C++ function call with incomplete argument

I got a question about C++ function call. Suppose I have defined a function like foo(int a, bool b=true); But when I try to call it. I use foo(3), Will this function call use foo(int a, bool ...
8
votes
4answers
341 views

Why doesn't C# allow a typeof as a default parameter?

class MyClass { public void MyMethod(Type targetType = typeof(MyClass)) { } } Isn't typeof(MyClass) a compile-time constant?
1
vote
1answer
72 views

Function call as default parameter - possible to use other parameters in the footprint?

Suppose I have the following function, the value it produces is needed by many other functions in the code: float mean(foo param1, bar param2); My other functions look like this: float foobar(foo ...
10
votes
2answers
1k views

Type Hinting: Default Parameters

Type Hinting PHP 5 introduces Type Hinting. Functions are now able to force parameters to be objects (by specifying the name of the class in the function prototype) or arrays (since PHP 5.1). ...
16
votes
2answers
7k views

T-SQL - function with default parameters

I have this script: CREATE FUNCTION dbo.CheckIfSFExists(@param1 INT, @param2 BIT = 1 ) RETURNS BIT AS BEGIN IF EXISTS ( bla bla bla ) RETURN 1; RETURN 0; END GO I want to use it in ...
1
vote
1answer
382 views

Default Jersey query parameter

I have Jersey client with a lot of functionality and now requirements are changed and I need to implement multitenancy for it. I tried to implement automatic tenancy resolving on server side using ...
0
votes
1answer
71 views

Default paramters for methods of template class

Is there a way to provide default paramter values for methods of a template class? For example I have the following: template<class T> class A { public: A foo(T t); }; How should I modify ...
2
votes
2answers
199 views

How to avoid ambiguous references with overridden methods with default parameters involving nullable types?

I have some methods like the following: static public int GetInt(int _default = 0) { // do work, return _default if error } static public int? GetInt(int? _default = null) { // do work, ...
1
vote
2answers
335 views

Documenting with Sphinx python methods that do have default parameters with sentinel objects?

If you want to be able to allow people to call some methods using None you have to do use a sentinel object when you define the method. _sentinel = object() def foo(param1=_sentinel): ... ...
4
votes
6answers
180 views

C# default parameters workaround

Is there a workaround for default parameters? In C++ I would use int foo(int k, bool check = false) A tedious workaround would be to overload a function. An easier one? (There is no way just ...
0
votes
1answer
421 views

CA1026 — Can this message be suppressed if an alternate, CLS Compliant method is supplied in place?

According to CA1026: Default parameters should not be used I'm not supposed to use default parameters. MSDN says not to suppress the message: Do not suppress a warning from this rule. ...
12
votes
3answers
2k views

Platform independent /dev/null in c++ [duplicate]

Possible Duplicate: Implementing a no-op std::ostream Is there any stream equivalent of NULL in c++? I want to write a function that takes in a stream if the user wants to have the internal ...
22
votes
2answers
4k views

Python, default keyword arguments after variable length positional arguments

I thought I could use named parameters after variable-length positional parameters in a function call, but I get a syntax error when importing a python class I'm writing with the following "get" ...
0
votes
1answer
215 views

how to pass a default parameter for an expression tree?

suppose i have the following function Dal.Person.GetAllByAge<T>(int iAge, Expression<Func<Person, T>> OrderBy) i want to pass a default parameter for the Expression like ...
1
vote
3answers
982 views

Default parameter for partial specialization

What syntax I want to achieve on user side: double a(1.), b(2.), deps(.1); bool res1 = compare<double>()(a, b); // works with default eps bool res2 = compare<double, ...
2
votes
3answers
93 views

c++ constructor question

#include <QApplication> #include <QFont> #include <QPushButton> #include <QWidget> class MyWidget : public QWidget { public: MyWidget(QWidget *parent = 0); }; ...

1 2