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 10 9783 Pr**************@gmail.com 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
* Pr**************@gmail.com: 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?
Alf P. Steinbach wrote: * Pr**************@gmail.com: [..] 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
* Victor Bazarov: Alf P. Steinbach wrote: * Pr**************@gmail.com: [..] 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?
Alf P. Steinbach wrote: * Victor Bazarov: Alf P. Steinbach wrote: * Pr**************@gmail.com: [..] 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
* Victor Bazarov: Alf P. Steinbach wrote: * Victor Bazarov: Alf P. Steinbach wrote: * Pr**************@gmail.com: > [..] 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? Pr**************@gmail.com 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).
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
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.
On 29 Jun 2006 07:05:00 -0700, Pr**************@gmail.com wrote: 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; }
it seems easy in assembly
xxxx:
xxx xx x, x
_MYPRINT1:
xxx xxxxxxxxxxx
xxxx xx
xxxx _Temp
xxxx xxxxxxxxxxx
xxx
to call in this way
MYPRINT1("This is a test for multiple argument %s%d",
__FILE__,__LINE__);
but it is OT and so i have write 'x' where there are alphabeticals
letters (don't counting _Temp)
but hey, here *you* are all the smart guys so find some other solution
in C++ :) This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Martin Magnusson |
last post by:
I'm using a matrix and vector library, that won't compile. When
running g++ I get the error message "macro "minor" passed 5 arguments,
but takes just 1"
The definition of "minor" looks like...
|
by: Walter L. Preuninger II |
last post by:
I would like to write a generic procedure that will take string or numeric
variables. I can not think of a way to make this more clear except to show
what I want.
int main(void)
{
int i=7;...
|
by: Augustus S.F.X Van Dusen |
last post by:
I have recently come across the following construction:
#define P_VAR(output, string, args...) \
fprintf (output, "This is "string"\n", ##args)
which can be invoked as follows:
int x = 1,...
|
by: Michael McGarry |
last post by:
Hi,
I am pretty sure this is not possible, but maybe somehow it is.
Given a variable, can I tell what type it is at runtime?
Michael
|
by: Nimmi Srivastav |
last post by:
Consider two functions A and B, both of which accept a variable number
of arguments (va_start, va-arg, va_end). Is there an easy way for
arguments passed to A to be, in turn, passed to B? (For...
|
by: carvalho.miguel |
last post by:
hello,
imagine you have a static class method that receives a function
pointer, an int with the number of arguments and a variable number of
arguments.
in that static method you want to call...
|
by: Max TenEyck Woodbury |
last post by:
I have a static array that requires quite complicated initialization.
With C89 I constructed a set of macros that greatly simplified that
process but required the user to count the number of...
|
by: rashmi |
last post by:
Hello All,
Can we map a MACRO with variable number of arguments to a function with
variable number of arguments?
Please help me in finding out how this could be done ?
for eg:
#define...
|
by: CptDondo |
last post by:
How do you declare a function with 0 or mroe arguments?
I have a bunch of functions like this:
void tc_cm(int row, int col);
void tc_do(void);
void tc_DO(int ln);
and I am trying to ...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM)
Please note that the UK and Europe revert to winter time on...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |