Tagged Questions

0
votes
6answers
181 views

Efficient passing of std::vector

When a C++ function accepts an std::vector argument, the usual pattern is to pass it by const reference, such as: int sum2(const std::vector<int> &v) { int s = 0; …
0
votes
1answer
35 views

extract the number and name of python method arguments

How can I return the arguments of a function in a different module #Module: functionss.py def simple(a, b, c): print "does something" #Module: extract.py #load the called mo …
1
vote
3answers
112 views

C++ Access to command line arguments outside main?

I have a couple command line apps that both end up calling into com objects. Rather than adding new interface to these com objects, can they access the parameters passed from the c …
0
votes
3answers
116 views

Are there compelling reasons to adopt HTML5?

The main website for my company is due to be completely overhauled next year as part of a major rebranding exercise. While it is expected to only require a "new lick of paint" (i. …
0
votes
3answers
98 views

python reduce error?

The following is my python code: >>> item = 1 >>> a = [] >>> a.append((1,2,3)) >>> a.append((7,2,4)) >>> sums=reduce(lambda x:abs(item …
3
votes
3answers
108 views

Read from File, or STDIN

I've written a command line utility that uses getopt for parsing arguments given on the command line. I would also like to have a filename be an optional argument, such as it is in …
1
vote
6answers
143 views

Parse string into argv/argc

Is there a C library function that I can use to parse a piece of text and obtain values for argv and argc, as if the text had been passed to an application on the command line? T …
3
votes
2answers
64 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 …
0
votes
2answers
43 views

Invalid Argument When Using String Array

Hello, I'm building a program that uses a WriteAllLines generic function: private static void WriteAllLines(string file, string[] contents) { using (StreamWriter writer = new …
1
vote
4answers
97 views

C Programming: Forward variable argument list.

Hi, I'm trying to write a function that accepts a variable number of parameters like printf, does some stuff, then passes the variable list to printf. I'm not sure how to do this, …
5
votes
4answers
140 views

Difference between arguments/parameters in C#

What is the difference between an argument & a parameter in C#? Are they the same thing?
0
votes
3answers
65 views

How to enforce unicode arguments for methods?

I have a model class with getter and setter methods, and the occasional static methods. I would like to enforce the usage of unicode strings as arguments for specific methods and u …
1
vote
3answers
29 views

Default arguments in JAR-manifest

Is there a way to create a JAR-file that contains some arguments that are passed to the main class? (It does not matter whether it prepends or appends the arguments to potential co …
1
vote
3answers
80 views

Forwarding command line arguments to a process in Python

I'm using a crude IDE (Microchip MPLAB) with C30 toolchain on Windows XP. The C compiler has a very noisy output that I'm unable to control, and it's very hard to spot actual warni …
0
votes
4answers
62 views

Reference a method parameter in javadoc

Is there a way to reference one of the method parameters from the method documentation body? Something like: /** * When {@paramref a} is null, we rely on b for the discombobulati …

1 2 3 4 5 14 next
15 30 50 per page