473,770 Members | 1,841 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Casting int'** to 'const int * const * const' dosn't work, why?

Hello

I'm porting some C++ stuff to C and having problem to get it through
gcc.
Here is a condensed version of the problem:

void foo(const int * const * const ptr)
{}

main()
{
int i = 5;
int *ptr = &i;

foo(&ptr);
}

The warning is:
warning: passing arg 1 of `foo' from incompatible pointer type.

Can't C implicit cast a int** to 'const int * const * const'? (it
works fine in C++)

/Jonas

Jun 1 '07
14 2960
Ben Bacarisse wrote:

<snip>
If it were that simple, then assigning a char * to a const char *
would also be a constraint violation and it is not.
<snip>

That was an excellent clarification, great post Ben!

--
Tor <torust [at] online [dot] no>
Jun 2 '07 #11
CBFalconer wrote:
Tor Rustad wrote:
>CBFalconer wrote:
[...]
>>No. const objects must be initialized at declaration time.
Before posting, I even checked that 'pcpci' was a pointer (to const
pointer to const int).

What am I missing exactly?

You can't write to const objects.
I know that, and didn't do such a thing. :-)

--
Tor <torust [at] online [dot] no>
Jun 2 '07 #12
On Sat, 02 Jun 2007 05:47:06 +0100, Ben Bacarisse
<be********@bsb .me.ukwrote:
<snip: 6.5.16.1>
So assignment (and, by extension, parameter passing) is allowed to "add
qualifiers" to the pointed-to type (but not to the type pointed-to by
the pointed-to type).

As far as I can tell, this rule is somewhat arbitrary and is intended,
presumably, to simplify the compiler's job. It (or something like it)
is required because without it a constraint-free program could modify
a const object[1] but at least one other language took the view that
all "safe" assignments would be allowed. Thus the OP's original
example (with const at every level) causes not a peep from a C++
compiler.

Does anyone know the reason C chose this safe but restrictive rule?
Does it significantly simplify the compiler?
In ~1989 when const was added they chose they simplest rule that was
obviously safe. It may or may not have significantly simplified the
compiler, but it did significantly simplify programmers', and standard
writers' and voters', rapid understanding of this new feature.

With several years of experience, C++ could choose the somewhat more
flexible rule of adding qualification at all or multiple inner levels.

C99 probably could have followed C++(98) but didn't. I don't know if
it was proposed, although they did have plently of other work to do.
- formerly david.thompson1 || achar(64) || worldnet.att.ne t
Jul 1 '07 #13
David Thompson <da************ @verizon.netwri tes:
On Sat, 02 Jun 2007 05:47:06 +0100, Ben Bacarisse
<be********@bsb .me.ukwrote:
<snip: 6.5.16.1>
>So assignment (and, by extension, parameter passing) is allowed to "add
qualifiers" to the pointed-to type (but not to the type pointed-to by
the pointed-to type).
<snip>
>Does anyone know the reason C chose this safe but restrictive rule?
Does it significantly simplify the compiler?
In ~1989 when const was added they chose they simplest rule that was
obviously safe. It may or may not have significantly simplified the
compiler, but it did significantly simplify programmers', and standard
writers' and voters', rapid understanding of this new feature.
Ah, yes. I was ignoring the value a simple rule would have for
understanding and acceptance.

--
Ben.
Jul 1 '07 #14
David Thompson <da************ @verizon.netwro te:
>
C99 probably could have followed C++(98) but didn't. I don't know if
it was proposed, although they did have plently of other work to do.
It was certainly considered, but there are substantial (and sometimes
quite subtle) differences between the way the C and C++ standards
describe their respective languages such that the rules couldn't just be
transplanted intact, but would have to be rewritten. And C99 added the
restrict qualifier that isn't covered by the existing C++ rules and
behaves quite differently from const and volatile. All in all, it would
have been a good bit of work and no one volunteered to undertake it.

I'm reasonably sure the committee would be happy to consider relaxed
conversion rules if someone were to work out the details and propose
them.

-Larry Jones

If I get a bad grade, it'll be YOUR fault for not doing the work for me!
-- Calvin
Jul 1 '07 #15

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

Similar topics

2
2495
by: ghostdog | last post by:
hi, i got this opengl/c++ code: <code> void render(CMesh *mesh){ ... float *pVertices; int *pIndices;
5
1544
by: Jason Heyes | last post by:
I didn't want to repeat the same code so I casted to const. Here is a simplified example of when casting to const can help avoid code duplication: class MyClass { int numbers; public: // default constructor not shown
13
1933
by: JustSomeGuy | last post by:
I have two object types ClassA and ClassB class ClassA { public: int data; operator ClassB() { ClassB b; b.data = data + 1; return (b);
0
1718
by: Greg | last post by:
Not sure if this is best place for this problem, but here it is. I have a project that is simply a C# class that interfaces with an IFilter. This is so I can retreive the text from Word docs. I'm able to use this DLL without any problems within my test windows app, but not within my windows service (that's when I receive the casting exception). Here's the code (sorry it's long): VB Function within windows app and windows service:
3
3655
by: Beta What | last post by:
Hello, I have a question about casting a function pointer. Say I want to make a generic module (say some ADT implementation) that requires a function pointer from the 'actual/other modules' that takes arguments of type (void *) because the ADT must be able to deal with any type of data. In my actual code, I will code the function to take arguments of their real types, then when I pass this pointer through an interface function, I...
5
5930
by: brekehan | last post by:
I've always been a little sketchy on the differences between static, dynamic, and reinterpret casting. I am looking to clean up the following block by using C++ casting instead of the C style casting. from what I am reading, I should use reinterpret cast in this situation, is that correct? Why does static and dynamic casting fail me? // please excuse the windows types, it is necessary in this code, // but the question remains C++ related
12
2135
by: Phil Endecott | last post by:
Dear Experts, I need a function that takes a float, swaps its endianness (htonl) in place, and returns a char* pointer to its first byte. This is one of a family of functions that prepare different data types for passing to another process. I have got confused by the rules about what won't work, what will work, and what might work, when casting. Specifically, I have an implementation that works until I remove my debugging, at which...
17
2229
by: sophia.agnes | last post by:
Hi , I was going through peter van der linden's book Expert C programming, in this book there is a section named "How and why to cast" the author then says as follows (float) 3 - it's a type conversion and the actual bits change. if you say (float) 3.0 it is a type disambiguation,and the compiler can plant the correct bits in the first place.some people say that
5
3913
by: jason.cipriani | last post by:
There have been some recent threads about casting pointers to and from void* that have me rethinking some of my usual practices. I have a couple of questions. 1. What is the purpose of C++'s static_cast<>? In other words, is there any real difference between statements like (with non-pointer types): double a = 3.4; int b = (int)a; // <--- this
0
9453
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10099
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10036
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8929
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7451
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5354
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5481
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3607
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2849
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.