473,398 Members | 2,404 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

what's this?

#include<iostream>

struct zaman{
float p;
};

typedef int (*func)(zaman, int);

int main(){
func(-1); //Hmmm. what's this?
std::getchar();
return 0;
}

why is func(-1) working?
Actually, I found this (equivalent code) in DON BOX's book

--------------------
typedef HRESULT (*INTERFACE_FINDER) (void *pThis, DWORD dwData, REFIID
riid, void **ppv);

//pseudo-function to indicate entry is just an offset
#define ENTRY_IS_OFFSET INTERFACE_FINDER(-1)
--------------

Isn't INTERFACE_FINDER(-1) a call to a function? How is it an offset?

Jun 24 '07 #1
6 1603
ba****@gmail.com wrote:

Please don't multi-post on Usenet.

--
Ian Collins.
Jun 24 '07 #2
ba****@gmail.com wrote:
#include<iostream>

struct zaman{
float p;
};

typedef int (*func)(zaman, int);

int main(){
func(-1); //Hmmm. what's this?
std::getchar();
return 0;
}

why is func(-1) working?
Actually, I found this (equivalent code) in DON BOX's book

--------------------
typedef HRESULT (*INTERFACE_FINDER) (void *pThis, DWORD dwData, REFIID
riid, void **ppv);

//pseudo-function to indicate entry is just an offset
#define ENTRY_IS_OFFSET INTERFACE_FINDER(-1)
--------------

Isn't INTERFACE_FINDER(-1) a call to a function? How is it an offset?
func is a type, INTERFACE_FINDER is a type, so they can't be function
calls. Instead they're casts, -1 cast to a function pointer.

john
Jun 24 '07 #3
On Jun 25, 1:57 am, John Harrison <john_androni...@hotmail.comwrote:
bak...@gmail.com wrote:
#include<iostream>
struct zaman{
float p;
};
typedef int (*func)(zaman, int);
int main(){
func(-1); //Hmmm. what's this?
std::getchar();
return 0;
}
why is func(-1) working?
Actually, I found this (equivalent code) in DON BOX's book
--------------------
typedef HRESULT (*INTERFACE_FINDER) (void *pThis, DWORD dwData, REFIID
riid, void **ppv);
//pseudo-function to indicate entry is just an offset
#define ENTRY_IS_OFFSET INTERFACE_FINDER(-1)
--------------
Isn't INTERFACE_FINDER(-1) a call to a function? How is it an offset?

func is a type, INTERFACE_FINDER is a type, so they can't be function
calls. Instead they're casts, -1 cast to a function pointer.

john
I am sorry, that's why I deleted it. So, if it is a cast why doesn't
this work in c++

int* (-1);

but func(-1); works?

Jun 24 '07 #4
co****************@gmail.com wrote:
On Jun 25, 1:57 am, John Harrison <john_androni...@hotmail.comwrote:
>bak...@gmail.com wrote:
#include<iostream>
struct zaman{
float p;
};
typedef int (*func)(zaman, int);
int main(){
func(-1); //Hmmm. what's this?
std::getchar();
return 0;
}
why is func(-1) working?
Actually, I found this (equivalent code) in DON BOX's book
--------------------
typedef HRESULT (*INTERFACE_FINDER) (void *pThis, DWORD dwData, REFIID
riid, void **ppv);
//pseudo-function to indicate entry is just an offset
#define ENTRY_IS_OFFSET INTERFACE_FINDER(-1)
--------------
Isn't INTERFACE_FINDER(-1) a call to a function? How is it an offset?

func is a type, INTERFACE_FINDER is a type, so they can't be function
calls. Instead they're casts, -1 cast to a function pointer.

john

I am sorry, that's why I deleted it. So, if it is a cast why doesn't
this work in c++

int* (-1);

but func(-1); works?
Try:

typedef int * int_ptr;

int main ( void ) {
int_ptr(-1);
}
Best

Kai-Uwe Bux
Jun 24 '07 #5
On Jun 25, 3:42 am, Kai-Uwe Bux <jkherci...@gmx.netwrote:
comp.lang.super...@gmail.com wrote:
On Jun 25, 1:57 am, John Harrison <john_androni...@hotmail.comwrote:
bak...@gmail.com wrote:
#include<iostream>
struct zaman{
float p;
};
typedef int (*func)(zaman, int);
int main(){
func(-1); //Hmmm. what's this?
std::getchar();
return 0;
}
why is func(-1) working?
Actually, I found this (equivalent code) in DON BOX's book
--------------------
typedef HRESULT (*INTERFACE_FINDER) (void *pThis, DWORD dwData, REFIID
riid, void **ppv);
//pseudo-function to indicate entry is just an offset
#define ENTRY_IS_OFFSET INTERFACE_FINDER(-1)
--------------
Isn't INTERFACE_FINDER(-1) a call to a function? How is it an offset?
func is a type, INTERFACE_FINDER is a type, so they can't be function
calls. Instead they're casts, -1 cast to a function pointer.
john
I am sorry, that's why I deleted it. So, if it is a cast why doesn't
this work in c++
int* (-1);
but func(-1); works?

Try:

typedef int * int_ptr;

int main ( void ) {
int_ptr(-1);

}

Best

Kai-Uwe Bux
Goodness! This works! It seems it is due to C++ grammar. Or is it?

Jun 24 '07 #6
co****************@gmail.com wrote:
:: On Jun 25, 1:57 am, John Harrison <john_androni...@hotmail.com>
:: wrote:
::: bak...@gmail.com wrote:
:::: #include<iostream>
:::
:::: struct zaman{
:::: float p;
:::: };
:::
:::: typedef int (*func)(zaman, int);
:::
:::: int main(){
:::: func(-1); //Hmmm. what's this?
:::: std::getchar();
:::: return 0;
:::: }
:::
:::: why is func(-1) working?
:::
:::: Actually, I found this (equivalent code) in DON BOX's book
:::
:::: --------------------
:::: typedef HRESULT (*INTERFACE_FINDER) (void *pThis, DWORD dwData,
:::: REFIID riid, void **ppv);
:::
:::: //pseudo-function to indicate entry is just an offset
:::: #define ENTRY_IS_OFFSET INTERFACE_FINDER(-1)
:::: --------------
:::
:::: Isn't INTERFACE_FINDER(-1) a call to a function? How is it an
:::: offset?
:::
::: func is a type, INTERFACE_FINDER is a type, so they can't be
::: function calls. Instead they're casts, -1 cast to a function
::: pointer.
:::
::: john
::
:: I am sorry, that's why I deleted it. So, if it is a cast why
:: doesn't this work in c++
::
:: int* (-1);
::
:: but func(-1); works?

Because int* is two tokens, and breaks the syntax (which is just
crazy).

If you try

typedef int* ip;

ip(-1);

it compiles (but doesn't do much).
In C++ you should really use the cast syntax

static_cast<int*>(-1)

because then the compiler will tell you that it really doesn't work.
Neither does ip(-1), of course.
Bo Persson
Jun 24 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Randell D. | last post by:
I have just recompiled, upgraded to PHP 4.3.4. As an exercise (and curiosity) I've decided to test out PDF functions and got the test in the PHP online manual working. I had one problem whereby...
2
by: thecrow | last post by:
Alright, what the hell is going on here? In the following code, I expect the printed result to be: DEBUG: frank's last name is burns. Instead, what I get is: DEBUG: frank's last name is...
220
by: Brandon J. Van Every | last post by:
What's better about Ruby than Python? I'm sure there's something. What is it? This is not a troll. I'm language shopping and I want people's answers. I don't know beans about Ruby or have...
699
by: mike420 | last post by:
I think everyone who used Python will agree that its syntax is the best thing going for it. It is very readable and easy for everyone to learn. But, Python does not a have very good macro...
9
by: Martin Maney | last post by:
In my copious spare time I've been dabbling at getting a computerized version of a board game working. After deciding that tk just made me want to vomit, and wx was like swimming through...
92
by: Reed L. O'Brien | last post by:
I see rotor was removed for 2.4 and the docs say use an AES module provided separately... Is there a standard module that works alike or an AES module that works alike but with better encryption?...
3
by: Ron_Adam | last post by:
Ok... it's works! :) So what do you think? Look at the last stacked example, it process the preprocess's first in forward order, then does the postprocess's in reverse order. Which might be...
12
by: Dario | last post by:
The following simple program behaves differently in Windows and Linux . #include <stdexcept> #include <iostream> #include <string> using namespace std; class LogicError : public logic_error {...
30
by: James Conrad StJohn Foreman | last post by:
After 3 years of using DB2 on Linux, I'm leaving my current employers to go work for a SQL Server shop instead. In order to find my replacement, they're trying to put together a set of questions...
2
by: yogesh | last post by:
char TCGI::x2c(char *what) { register char digit; digit = (char) ((what >= 'A' ? ((what & 0xdf) - 'A')+10 : (what - '0'))); digit *= (char) 16; digit += (char) ((what >= 'A' ? ((what & 0xdf) -...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.