Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C++ > Variable Number of Arguments in Macro

Reply
Thread Tools

Variable Number of Arguments in Macro

 
 
Praveen.Kumar.SP@gmail.com
Guest
Posts: n/a
 
      06-29-2006
Hi

Could anyone solve the problem for the code below

The Code:

#include "stdio.h"
#include "iostream.h"

void Temp( int a, char* str,...)
{
//code to handle the arguments
}

#define MYPRINT(_x_) printf _x_
#define MYPRINT1(_x_) Temp( 10,_x_)

int main()
{
MYPRINT(("This is a test for multiple argument %s
%d",__FILE__,__LINE__));
MYPRINT1(("This is a test for multiple argument %s
%d",__FILE__,__LINE__));

return 0;
}

Problem:

In the first macro I am able to get the result as expected from the
printf where as in the second case my parameters are not properly
passed to the function Temp. Could anyone of you tell me why i am not
abel to use the macro to pass parameter to a function with some
mandatory number of parameter and variable number of parameter?

Is there any way that i can paa the parameter as i expected?how?


Thanks
praveen

 
Reply With Quote
 
 
 
 
Victor Bazarov
Guest
Posts: n/a
 
      06-29-2006
wrote:
> Could anyone solve the problem for the code below
>
> The Code:
>
> #include "stdio.h"
> #include "iostream.h"
>
> void Temp( int a, char* str,...)
> {
> //code to handle the arguments
> }
>
> #define MYPRINT(_x_) printf _x_
> #define MYPRINT1(_x_) Temp( 10,_x_)
>
> int main()
> {
> MYPRINT(("This is a test for multiple argument %s
> %d",__FILE__,__LINE__));
> MYPRINT1(("This is a test for multiple argument %s
> %d",__FILE__,__LINE__));
>
> return 0;
> }
>
> Problem:
>
> In the first macro I am able to get the result as expected from the
> printf where as in the second case my parameters are not properly
> passed to the function Temp. Could anyone of you tell me why i am not
> abel to use the macro to pass parameter to a function with some
> mandatory number of parameter and variable number of parameter?


Because when the macro MYPRINT1 is substituted you get

Temp( 10,("This is..","filename.ext",123));

The extra set of parentheses around the arguments makes it a single
expression with two operators comma instead of part of the list of
arguments to the 'Temp' function. BTW, you get 123 where 'char*'
is expected. It's most likely undefined behaviour.

> Is there any way that i can paa the parameter as i expected?how?


You most likely cannot. See if your compiler supports "variadic
macros" (macros with ellipsis).

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


 
Reply With Quote
 
 
 
 
Alf P. Steinbach
Guest
Posts: n/a
 
      06-29-2006
* :
>
> Could anyone solve the problem for the code below


"The" problem? I count a multitude of problems. Which one?


> The Code:
>
> #include "stdio.h"


Use the <headername> form instead of "headername" for standard headers.
That way you avoid picking up a header with the same name in a local
directory.


> #include "iostream.h"


This is not a standard header, and won't compile with e.g. Visual C++
7.1 or better. Use <iostream> instead. <iostream> is a standard header.


> void Temp( int a, char* str,...)


The second argument should be declared as

char const* str

unless you want the function Temp to be able to modify the contents of
'str'.

The ellipsis '...' should generally not be used in C++ code, because
it's /dangerous/ (not typesafe) and /limited/ (no non-POD objects);
there are much better typesafe solutions.


> {
> //code to handle the arguments
> }
>
> #define MYPRINT(_x_) printf _x_
> #define MYPRINT1(_x_) Temp( 10,_x_)


Generally it's not a good idea to use macros. See this group's FAQ and
Bjarne Stroustrup's C++ FAQ for reasons why.


> int main()
> {
> MYPRINT(("This is a test for multiple argument %s
> %d",__FILE__,__LINE__));
> MYPRINT1(("This is a test for multiple argument %s
> %d",__FILE__,__LINE__));
>
> return 0;
> }
>
> Problem:
>
> In the first macro I am able to get the result as expected from the
> printf where as in the second case my parameters are not properly
> passed to the function Temp. Could anyone of you tell me why i am not
> abel to use the macro to pass parameter to a function with some
> mandatory number of parameter and variable number of parameter?


The second macro invocation does not work because it expands to

Temp( 10, ("some text",__FILE__,__LINE__));

which is syntactically invalid.


> Is there any way that i can paa the parameter as i expected?how?


No, not as you expected.

A solution depends on what you want to achieve. Obviously it's not
what's illustrated by your code, because that could be much more easily
achieved by calling Temp directly without the macro. In other words,
you have illustrated a flawed solution to some problem, instead of the
problem itself -- to get help with that problem, explain it.

I suspect, though, that it has to do with logging or tracing?

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
 
Reply With Quote
 
Victor Bazarov
Guest
Posts: n/a
 
      06-29-2006
Alf P. Steinbach wrote:
> * :
>> [..]

>
> The second macro invocation does not work because it expands to
>
> Temp( 10, ("some text",__FILE__,__LINE__));


Really? You mean __FILE__ and __LINE__ do not get substituted?
Why? Have you tried it?

> which is syntactically invalid.


Why is it invalid?

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


 
Reply With Quote
 
Alf P. Steinbach
Guest
Posts: n/a
 
      06-29-2006
* Victor Bazarov:
> Alf P. Steinbach wrote:
>> * :
>>> [..]

>> The second macro invocation does not work because it expands to
>>
>> Temp( 10, ("some text",__FILE__,__LINE__));

>
> Really?


Yep.


> You mean __FILE__ and __LINE__ do not get substituted?


No, I haven't written that; the result is churned once more through the
macro substitution machinery, and so on.

Understanding this becomes important when you have code like

#include <iostream>

#define VB( x ) #x

int main()
{
std::cout << VB(__FILE__) << std::endl;
}

where the macro invocation expands to

#__FILE__

which in the next round becomes

"__FILE__"

which results in the output of the string "__FILE__", not the source
code file name.


> Why?


Because that's how macros work; look it up in your favorite C++ textbook.


> Have you tried it?


No.


>> which is syntactically invalid.

>
> Why is it invalid?


There you caught me. It's not syntactically but semantically
invalid; sorry for the typo. The type of the comma expression is 'int',
whereas the Temp function requires a char* as second argument.


--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
 
Reply With Quote
 
Victor Bazarov
Guest
Posts: n/a
 
      06-29-2006
Alf P. Steinbach wrote:
> * Victor Bazarov:
>> Alf P. Steinbach wrote:
>>> * :
>>>> [..]
>>> The second macro invocation does not work because it expands to
>>>
>>> Temp( 10, ("some text",__FILE__,__LINE__));

>>
>> Really?

>
> Yep.
>
>
> [...about using the # operator...]
>
>> Why?

>
> Because that's how macros work; look it up in your favorite C++
> textbook.
>
>> Have you tried it?

>
> No.


Well, do, then.

#define M(x) printf("%s", x)
#include <stdio.h>
int main()
{
M((__FILE__));
}

And then turn to *your* favourite C++ textbook.

>>> which is syntactically invalid.

>>
>> Why is it invalid?

>
> There you caught me. It's not syntactically but semantically
> invalid; sorry for the typo. The type of the comma expression is
> 'int', whereas the Temp function requires a char* as second argument.


V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


 
Reply With Quote
 
Alf P. Steinbach
Guest
Posts: n/a
 
      06-29-2006
* Victor Bazarov:
> Alf P. Steinbach wrote:
>> * Victor Bazarov:
>>> Alf P. Steinbach wrote:
>>>> * :
>>>>> [..]
>>>> The second macro invocation does not work because it expands to
>>>>
>>>> Temp( 10, ("some text",__FILE__,__LINE__));
>>> Really?

>> Yep.
>>
>>
>> [...about using the # operator...]


No, what you completely snipped was about macro expansion.


>>> Why?

>> Because that's how macros work; look it up in your favorite C++
>> textbook.
>>
>>> Have you tried it?

>> No.

>
> Well, do, then.
>
> #define M(x) printf("%s", x)
> #include <stdio.h>
> int main()
> {
> M((__FILE__));
> }
>
> And then turn to *your* favourite C++ textbook.


That's not an example of anything discussed previously, and, since I
don't think you don't know that: I resent that kind of discussion technique.

It doesn't remove the egg on your face.

For that you need to employ a strong egg-remover, not a context-remover.


--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
 
Reply With Quote
 
Ron Natalie
Guest
Posts: n/a
 
      06-29-2006
wrote:
> Hi
>
> Could anyone solve the problem for the code below
>

C now has varadic macros. C++ doesn't (nor does it
support overloading of macros).
 
Reply With Quote
 
Frederick Gotham
Guest
Posts: n/a
 
      06-29-2006
Ron Natalie posted:


> C now has varadic macros. C++ doesn't (nor does it
> support overloading of macros).



Not really, given that nobody uses C99.


--

Frederick Gotham
 
Reply With Quote
 
Ian Collins
Guest
Posts: n/a
 
      06-30-2006
Frederick Gotham wrote:
> Ron Natalie posted:
>
>
>
>>C now has varadic macros. C++ doesn't (nor does it
>>support overloading of macros).

>
>
>
> Not really, given that nobody uses C99.
>

I do, so does my choice of OS.

--
Ian Collins.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Calling a function that expects variable arguments from a functionwith variable arguments Navaneeth C Programming 4 11-20-2010 05:35 AM
Call again a variadic function (... variable number of arguments)with same arguments that its variadic wrapper moreau.steve@gmail.com C Programming 3 12-31-2008 07:13 AM
functions and arguments.length; passing unknown number of arguments oldyork90 Javascript 10 09-27-2008 03:05 AM
Mapping a macro with variable number of arguments to a variadic function rashmi C Programming 6 12-07-2006 07:12 AM
macro passed wrong number of arguments Martin Magnusson C++ 4 06-15-2004 05:01 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57