473,395 Members | 1,977 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,395 software developers and data experts.

cast from function call of type int to non-matching type double

Hi,

Short question:

Any particular reason for why I'm getting a warning here:
(cast from function call of type int to non-matching type double)
xdouble = (double)rand()/(double)RAND_MAX;
xdouble is ofcourse of type double. So everything should be casted to
type double. Then I don't see why the compiler (gcc) complains. The line
should create a (type double) random number between 0 and 1 and it would
be nice to have this warning go away...
Best regards
Martin Jørgensen

--
---------------------------------------------------------------------------
Home of Martin Jørgensen - http://www.martinjoergensen.dk
Jun 18 '06 #1
16 11175
Martin Jørgensen <ho**********@hotmail.com> writes:
Hi,

Short question:

Any particular reason for why I'm getting a warning here:
(cast from function call of type int to non-matching type double)
xdouble = (double)rand()/(double)RAND_MAX;
xdouble is ofcourse of type double. So everything should be casted to
type double. Then I don't see why the compiler (gcc) complains. The
line should create a (type double) random number between 0 and 1 and
it would be nice to have this warning go away...


This warning should show up on gcc only when a specific compilation
option is set (I don't remember it, something with -W...). It tells
you if you cast a function call to a type that's different, like
double and int. I think it protects against int malloc() [it's void *
malloc() in the proper header is included]
being cast to a pointer.

--
Ioan - Ciprian Tandau
tandau _at_ freeshell _dot_ org (hope it's not too late)
(... and that it still works...)
Jun 18 '06 #2
Martin Jørgensen wrote:
Hi,

Short question:

Any particular reason for why I'm getting a warning here:
(cast from function call of type int to non-matching type double)
xdouble = (double)rand()/(double)RAND_MAX;
xdouble is ofcourse of type double. So everything should be casted to
type double. Then I don't see why the compiler (gcc) complains. The line
should create a (type double) random number between 0 and 1 and it would
be nice to have this warning go away...


gcc has an option, -Wbad-function-cast, that will warn "whenever a
function call is cast to a non-matching type". Either don't use this
option, explicitly disable is using -Wno-bad-function-cast, or better
yet, lose the superfluous cast:

xdouble = rand()/(double)RAND_MAX;

Robert Gamble

Jun 18 '06 #3
Robert Gamble wrote:
Martin Jørgensen wrote:
Hi,

Short question:

Any particular reason for why I'm getting a warning here:
(cast from function call of type int to non-matching type double)
xdouble = (double)rand()/(double)RAND_MAX;
xdouble is ofcourse of type double. So everything should be casted to
type double. Then I don't see why the compiler (gcc) complains. The line
should create a (type double) random number between 0 and 1 and it would
be nice to have this warning go away...

gcc has an option, -Wbad-function-cast, that will warn "whenever a
function call is cast to a non-matching type". Either don't use this
option, explicitly disable is using -Wno-bad-function-cast, or better


Bad idea. I want it to catch "real errors", but not those intentionally
casts I make.
yet, lose the superfluous cast:

xdouble = rand()/(double)RAND_MAX;


Great (problem solved)! I just don't understand: I won't complain if I
divided two numbers of type double and store the result as a type double
-> therefore the cast. So, rand() returns an integer, which is divided
by a type double. This doesn't give any warning....?

What exactly is a "non-matching type"?
Best regards
Martin Jørgensen

--
---------------------------------------------------------------------------
Home of Martin Jørgensen - http://www.martinjoergensen.dk
Jun 18 '06 #4
Martin Jørgensen <ho**********@hotmail.com> writes:
Short question:

Any particular reason for why I'm getting a warning here:
(cast from function call of type int to non-matching type double)
xdouble = (double)rand()/(double)RAND_MAX;
xdouble is ofcourse of type double. So everything should be casted to
type double. Then I don't see why the compiler (gcc) complains. The
line should create a (type double) random number between 0 and 1 and
it would be nice to have this warning go away...


There should be nothing wrong with that line; casting an int to double
is perfectly legitimate. I don't get a warning when I compile it
myself. Show us a complete program and the *exact* warning message.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jun 18 '06 #5
Martin Jørgensen said:
Hi,

Short question:

Any particular reason for why I'm getting a warning here:
(cast from function call of type int to non-matching type double)
xdouble = (double)rand()/(double)RAND_MAX;


Why are you casting in the first place? Why aren't you doing this:

xdouble = rand() / (RAND_MAX + 1.0);

instead?

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Jun 18 '06 #6
Richard Heathfield wrote:
Martin Jørgensen said:

Hi,

Short question:

Any particular reason for why I'm getting a warning here:
(cast from function call of type int to non-matching type double)
xdouble = (double)rand()/(double)RAND_MAX;

Why are you casting in the first place? Why aren't you doing this:

xdouble = rand() / (RAND_MAX + 1.0);


I also do that now, as that don't give any warnings. But I did it
because I thought that I wouldn't get any problem if I divided two type
double-numbers/variables with each other.

So: My idea was: It must be better do do this:

500.0 / 100000.0

Than this:

500 / 100000.0

But the compiler didn't share that logic with me :-)
Best regards
Martin Jørgensen

--
---------------------------------------------------------------------------
Home of Martin Jørgensen - http://www.martinjoergensen.dk
Jun 18 '06 #7
On Sun, 18 Jun 2006 07:52:00 +0200, Martin Jørgensen
<ho**********@hotmail.com> wrote in comp.lang.c:
Robert Gamble wrote:
Martin Jørgensen wrote:
Hi,

Short question:

Any particular reason for why I'm getting a warning here:
(cast from function call of type int to non-matching type double)
xdouble = (double)rand()/(double)RAND_MAX;
xdouble is ofcourse of type double. So everything should be casted to
type double. Then I don't see why the compiler (gcc) complains. The line
should create a (type double) random number between 0 and 1 and it would
be nice to have this warning go away...

gcc has an option, -Wbad-function-cast, that will warn "whenever a
function call is cast to a non-matching type". Either don't use this
option, explicitly disable is using -Wno-bad-function-cast, or better


Bad idea. I want it to catch "real errors", but not those intentionally
casts I make.
yet, lose the superfluous cast:

xdouble = rand()/(double)RAND_MAX;


Great (problem solved)! I just don't understand: I won't complain if I
divided two numbers of type double and store the result as a type double
-> therefore the cast. So, rand() returns an integer, which is divided
by a type double. This doesn't give any warning....?


You cannot divide an int by a double in C. The language does not
allow it. When you think you are dividing (or adding, subtracting,
multiplying, and so on) two different arithmetic types, something else
is really happening.

C has conversions of one type to another. Some conversions are
automatic, and will happen automatically if the expression calls for
it. The most common of these are what are called "the usual integer
conversions" in the C standard.

When an expression or subexpression performs a binary operation on two
scalar values of different type, the lesser type is automatically
promoted to the greater type. No cast is required.

So if you have code like this:

double two_thirds;
two_thirds = 2 / 3.0;

....the integer constant '2' is automatically converted to type double
because the divisor is the double constant '3.0'.

Exactly the same thing happens in the expression:

rand() / (double)RAND_MAX;

Both operands are evaluated. The cast on the denominator makes it a
double value. This causes the compiler to automatically convert the
int returned by rand() to a double to do the division.
What exactly is a "non-matching type"?
Well, the type of the return value of rand() is an int. Any type
other than int would be a non-matching type.
Best regards
Martin Jørgensen


--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://c-faq.com/
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
Jun 18 '06 #8
On Sun, 18 Jun 2006 07:52:00 +0200, Martin Jørgensen
<ho**********@hotmail.com> wrote:
Robert Gamble wrote:
Martin Jørgensen wrote:
Hi,

Short question:

Any particular reason for why I'm getting a warning here:
(cast from function call of type int to non-matching type double)
xdouble = (double)rand()/(double)RAND_MAX;
xdouble is ofcourse of type double. So everything should be casted to
type double. Then I don't see why the compiler (gcc) complains. The line
should create a (type double) random number between 0 and 1 and it would
be nice to have this warning go away...

gcc has an option, -Wbad-function-cast, that will warn "whenever a
function call is cast to a non-matching type". Either don't use this
option, explicitly disable is using -Wno-bad-function-cast, or better


Bad idea. I want it to catch "real errors", but not those intentionally
casts I make.
yet, lose the superfluous cast:

xdouble = rand()/(double)RAND_MAX;


Great (problem solved)! I just don't understand: I won't complain if I
divided two numbers of type double and store the result as a type double
-> therefore the cast. So, rand() returns an integer, which is divided
by a type double. This doesn't give any warning....?


The integer rand returned is first implicitly converted to double and
the division is performed using two doubles. You are not casting the
return from rand to double. Since an implicit conversion is not a
cast, the bad-function-cast option should not be involved.

Note that the compiler is free to generate any kind of diagnostic it
likes as long as it still generates the correct code for a well
defined expression. It could still generate a warning of the type
"Hey, you are dividing an int by a double and I consider that to be an
operation of dubious value." It's a quality of implementation issue.

What exactly is a "non-matching type"?


Whatever your compiler decides it is.
Remove del for email
Jun 18 '06 #9
On Sun, 18 Jun 2006 07:14:02 +0000, Richard Heathfield
<in*****@invalid.invalid> wrote:
Martin Jørgensen said:
Hi,

Short question:

Any particular reason for why I'm getting a warning here:
(cast from function call of type int to non-matching type double)
xdouble = (double)rand()/(double)RAND_MAX;


Why are you casting in the first place? Why aren't you doing this:

xdouble = rand() / (RAND_MAX + 1.0);

instead?


Possibly because it gives a different answer.
Remove del for email
Jun 18 '06 #10
Jack Klein wrote:
On Sun, 18 Jun 2006 07:52:00 +0200, Martin Jørgensen
<ho**********@hotmail.com> wrote in comp.lang.c: -snip-

You cannot divide an int by a double in C. The language does not
allow it. When you think you are dividing (or adding, subtracting,
multiplying, and so on) two different arithmetic types, something else
is really happening.
Ok.
C has conversions of one type to another. Some conversions are
automatic, and will happen automatically if the expression calls for
it. The most common of these are what are called "the usual integer
conversions" in the C standard.

When an expression or subexpression performs a binary operation on two
scalar values of different type, the lesser type is automatically
promoted to the greater type. No cast is required.
Just to make sure it's clear:

When you write "the greater type" what is that then. The type for which
sizeof( double/int ) is the largest? Sizeof(double) = 8 on my system and
sizeof(int) = 4, so suppose (I don't know if it's possible), two
different types were both 4/8 bytes what would the "greater type" be?
So if you have code like this:

double two_thirds;
two_thirds = 2 / 3.0;

...the integer constant '2' is automatically converted to type double
because the divisor is the double constant '3.0'.
I must have remembered incorrect, but I believe that I once tried to do
something where the result was an integer - at least - I wanted to avoid
the result being: two_thirds = 0 (it should be 0,666666667)...
Exactly the same thing happens in the expression:

rand() / (double)RAND_MAX;

Both operands are evaluated. The cast on the denominator makes it a
double value. This causes the compiler to automatically convert the
int returned by rand() to a double to do the division.


Ok.
What exactly is a "non-matching type"?

Well, the type of the return value of rand() is an int. Any type
other than int would be a non-matching type.


Now I get it.... It (the compiler) didn't look at the denominator... It
only looked at the numerator and thought: Hey, you probably
shouldn't/dont want to cast the return type (int) from rand() to type
double as I know it's type int and I would like it to stay that type no
matter what kind of type it's divided by...
Best regards
Martin Jørgensen

--
---------------------------------------------------------------------------
Home of Martin Jørgensen - http://www.martinjoergensen.dk
Jun 18 '06 #11
Martin Jørgensen <ho**********@hotmail.com> writes:
Jack Klein wrote:
On Sun, 18 Jun 2006 07:52:00 +0200, Martin Jørgensen
<ho**********@hotmail.com> wrote in comp.lang.c: [...]
What exactly is a "non-matching type"?

Well, the type of the return value of rand() is an int. Any type
other than int would be a non-matching type.


Now I get it.... It (the compiler) didn't look at the
denominator... It only looked at the numerator and thought: Hey, you
probably shouldn't/dont want to cast the return type (int) from rand()
to type double as I know it's type int and I would like it to stay
that type no matter what kind of type it's divided by...


Which strikes me as a silly warning. There is nothing wrong with
converting the result of rand() to double.

<OT>
gcc's documentation says:

`-Wbad-function-cast (C only)'
Warn whenever a function call is cast to a non-matching type. For
example, warn if `int malloc()' is cast to `anything *'.

This seems to be intended to catch the error of calling malloc()
without a prototype in scope, an error that gcc is quite capable of
catching directly (the usual message is "warning: implicit declaration
of function `malloc'"). I wouldn't use that option myself.
</OT>

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jun 18 '06 #12
Barry Schwarz said:
On Sun, 18 Jun 2006 07:14:02 +0000, Richard Heathfield
<in*****@invalid.invalid> wrote:
Martin Jørgensen said:
<snip>
xdouble = (double)rand()/(double)RAND_MAX;


Why are you casting in the first place? Why aren't you doing this:

xdouble = rand() / (RAND_MAX + 1.0);

instead?


Possibly because it gives a different answer.


I know - but it's almost certainly the answer he actually needs, as opposed
to the one he thinks he needs. :-)

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Jun 18 '06 #13
Richard Heathfield wrote:
Barry Schwarz said:

On Sun, 18 Jun 2006 07:14:02 +0000, Richard Heathfield
<in*****@invalid.invalid> wrote:

Martin Jørgensen said:

<snip>
xdouble = (double)rand()/(double)RAND_MAX;

Why are you casting in the first place? Why aren't you doing this:

xdouble = rand() / (RAND_MAX + 1.0);

instead?


Possibly because it gives a different answer.

I know - but it's almost certainly the answer he actually needs, as opposed
to the one he thinks he needs. :-)


Damn... I didn't saw the denominator was changed to + 1.0.... Why is
that so? Would this generate a number between [0;1[ ?
Best regards
Martin Jørgensen

--
---------------------------------------------------------------------------
Home of Martin Jørgensen - http://www.martinjoergensen.dk
Jun 18 '06 #14
Richard Heathfield wrote:
Barry Schwarz said: -snip-
I know - but it's almost certainly the answer he actually needs, as opposed
to the one he thinks he needs. :-)


Oh.... I see. I have no further questions - there's a lot about this on
google groups, so thanks for the help....
Best regards
Martin Jørgensen

--
---------------------------------------------------------------------------
Home of Martin Jørgensen - http://www.martinjoergensen.dk
Jun 18 '06 #15
Martin Jørgensen said:
Richard Heathfield wrote:
Barry Schwarz said:

On Sun, 18 Jun 2006 07:14:02 +0000, Richard Heathfield
<in*****@invalid.invalid> wrote:
Martin Jørgensen said:


<snip>
>xdouble = (double)rand()/(double)RAND_MAX;

Why are you casting in the first place? Why aren't you doing this:

xdouble = rand() / (RAND_MAX + 1.0);

instead?

Possibly because it gives a different answer.

I know - but it's almost certainly the answer he actually needs, as
opposed to the one he thinks he needs. :-)


Damn... I didn't saw the denominator was changed to + 1.0.... Why is
that so? Would this generate a number between [0;1[ ?

It would generate a number in the range [0, 1) - that's a half-open
interval, so 0 is included in the range but 1 is not. Multiplying by n
gives you a number in the range 0 to n-1:

r = n * (rand() / (RAND_MAX + 1.0));

Adding 1 gives you a number in the range 1 to n, which is handy for dice and
so on:

d = n * (rand() / (RAND_MAX + 1.0)) + 1;

There are other common uses too, e.g.

int rrnd(int low, int high)
{
if(low > high) { int t = low; low = high; high = t; }
return (high - low + 1) * (rand() / (RAND_MAX + 1.0)) + low;
}

You never need a cast for any of them.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Jun 19 '06 #16
Richard Heathfield wrote:
Martin Jørgensen said:

.... snip ...

Damn... I didn't saw the denominator was changed to + 1.0....
Why is that so? Would this generate a number between [0;1[ ?


It would generate a number in the range [0, 1) - that's a half-open
interval, so 0 is included in the range but 1 is not. Multiplying
by n gives you a number in the range 0 to n-1:

r = n * (rand() / (RAND_MAX + 1.0));

Adding 1 gives you a number in the range 1 to n, which is handy for
dice and so on:

d = n * (rand() / (RAND_MAX + 1.0)) + 1;


As far as ranges is concerned, many pseudo random generators will
not generate the value 0 at all. In this case dividing by
(double)RAND_MAX will give you a value in the range greater than 0
through 1.0. This may cure (or cause) some statistical anomalies.

--
"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews
Jun 19 '06 #17

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

Similar topics

5
by: klaus triendl | last post by:
hi, recently i discovered a memory leak in our code; after some investigation i could reduce it to the following problem: return objects of functions are handled as temporary objects, hence...
5
by: trying_to_learn | last post by:
Hello All Have another qn from the practice exercises. I ve done the exercise and the birds fly member fn was called successfully. But i still cant answer the authors qn. why this ability to...
6
by: gustav04 | last post by:
hi all i have a question: what is the difference between a c-function and an c++ class method (both do exactly the same thing). lets say, i have a function called print2std() and a class...
5
by: Luke Dalessandro | last post by:
Code: Thread -> U -> T public class Thread { protected: thread_t _tid; virtual void foo() = 0; public: // Static entry function for the internal thread
10
by: Barbrawl McBribe | last post by:
Is is possible to use typedefs to cast function pointers? I think I saw this in the WINGs src; grep for '(hashFunc)'. So far, trying to use a typedef to cast function pointers so that a return...
21
by: sks | last post by:
Hi , could anyone explain me why definition to a pure virtual function is allowed ?
11
by: ypjofficial | last post by:
Hello All, So far I have been reading that in case of a polymorphic class ( having at least one virtual function in it), the virtual function call get resolved at run time and during that the...
1
by: dearprasan | last post by:
Hi, I am making a call to a asynchronous call to a webservice using callback. Before I make the asynchronous call, I am allowed to make the following cast: IHTMLDocument2 doc = (IHTMLDocument2)...
9
by: jason.cipriani | last post by:
All right, I'm in this weird situation that's hard to explain but I've put together a small example program that represents it. Please bear with the fact that some of the stuff in the example seems...
3
by: Bartc | last post by:
I have a variable like this: int *p; Sometimes this points to an int location containing the address of a void(void) function. How can I cast it so that I can call that function? I've...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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...

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.