473,770 Members | 6,736 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

return discards qualifiers from pointer target type

i Group,

to my understanding, defining a function parameter as "const" means that
the function is not going to change it.

Why does the compiler says "return discards qualifiers from pointer
target type" when I *access* a member of an argument defined as const?

Please see the code below:

/*** START TEST.C ***/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define MAX_NAME_SIZE 80
#define MY_NAME "This is my name"

struct my_s
{
char mys_name[MAX_NAME_SIZE+1];
};

void set_mys_name(st ruct my_s *, const char *);
char *get_mys_name(c onst struct my_s *);

int main(void) {
struct my_s *mysp;

mysp = malloc(sizeof *mysp);

set_mys_name(my sp, MY_NAME);

printf("My name is %s\n", get_mys_name(my sp));

return (0);
}

void
set_mys_name(st ruct my_s *mys, const char *name)
{
if(!mys) return;
strncpy(mys->mys_name, name, MAX_NAME_SIZE);
}

char *
get_mys_name(co nst struct my_s *mys)
{
if(!mys) return (NULL);
return (mys->mys_name);
}
/*** START TEST.C ***/
gcc -Wall -o test test.c
test.c: In function `get_mys_name':
test.c:39: warning: return discards qualifiers from pointer target type
./test
My name is This is my name
Thank you!
--
Pietro Cerutti

PGP Public Key:
http://gahr.ch/pgp
Aug 28 '07
17 12788
Pietro Cerutti <ga**@gahr.chwr ites:
Ben Bacarisse wrote:
<snip>
>A few examples:

struct s x; /* x is a struct s */
const struct s y; /* y is a constant struct s */
struct s const w; /* ditto, but some find this one odd to read! */
struct s *const p; /* p is constant pointer to a (non-const) struct */
const struct s *q; /* q is a pointer to a constant struct s */
const struct s *const r; /* both p and the struct it points to are const */

Does that help at all?

No, /*that*/ was clear. I do understand the the pointer is not const,
the structure is, and therefore you haven't got the right to modify its
members.
OK, but just so you see why I thought you had that confused, here is
what you said:

| I though that a const in a parameter only meant that the function itself
| isn't going to modify the parameter.

"modify the parameter" is confusing here. Strictly speaking, the
parameter is mys and not the thing mys points to. mys can be modified
by this function because it is not declared as being const. I get
that you get that, but it was not at all clear from the above!
Now I understood that you can't return members of the structure without
declaring them const as well.

What I still don't understand is why: if the structure is const only
inside the function receiving it as a const parameter (thus not const at
the caller) the function should be able to return to the caller members
of the struct not declared as const, since the caller has the right to
modify them.
The reason is that the compiler can't know and thus needs a general
rule:

struct s { char name[100]; };

char *open_up(const struct s *sp)
{
return sp->name; /* example code: this is an error! */
}

void safe(void)
{
struct s data;
open_up(&data)[0] = 'a';
}

void unsafe(void)
{
const struct s data;
open_up(&data)[0] = 'a';
}

You are right that the function 'open_up' does not allow 'safe' to do
anything that it can't already do, but 'usafe' should be stopped. How
can the compiler tell the difference? All three can be compiled
separately, of course.

When an object is declared const, it does not just mean that you won't
change it. It also means that you won't hand out the means by which
it may be changed (not at least with out a diagnostic message).

--
Ben.
Aug 28 '07 #11
Ben Bacarisse wrote:
Pietro Cerutti <ga**@gahr.chwr ites:
>Ben Bacarisse wrote:
<snip>
>>A few examples:

struct s x; /* x is a struct s */
const struct s y; /* y is a constant struct s */
struct s const w; /* ditto, but some find this one odd to read! */
struct s *const p; /* p is constant pointer to a (non-const) struct */
const struct s *q; /* q is a pointer to a constant struct s */
const struct s *const r; /* both p and the struct it points to are const */

Does that help at all?
No, /*that*/ was clear. I do understand the the pointer is not const,
the structure is, and therefore you haven't got the right to modify its
members.

OK, but just so you see why I thought you had that confused, here is
what you said:

| I though that a const in a parameter only meant that the function itself
| isn't going to modify the parameter.

"modify the parameter" is confusing here. Strictly speaking, the
parameter is mys and not the thing mys points to. mys can be modified
by this function because it is not declared as being const. I get
that you get that, but it was not at all clear from the above!
>Now I understood that you can't return members of the structure without
declaring them const as well.

What I still don't understand is why: if the structure is const only
inside the function receiving it as a const parameter (thus not const at
the caller) the function should be able to return to the caller members
of the struct not declared as const, since the caller has the right to
modify them.

The reason is that the compiler can't know and thus needs a general
rule:

struct s { char name[100]; };

char *open_up(const struct s *sp)
{
return sp->name; /* example code: this is an error! */
}

void safe(void)
{
struct s data;
open_up(&data)[0] = 'a';
}

void unsafe(void)
{
const struct s data;
open_up(&data)[0] = 'a';
}

You are right that the function 'open_up' does not allow 'safe' to do
anything that it can't already do, but 'usafe' should be stopped. How
can the compiler tell the difference? All three can be compiled
separately, of course.

When an object is declared const, it does not just mean that you won't
change it. It also means that you won't hand out the means by which
it may be changed (not at least with out a diagnostic message).
Yep. Got it. Thanks again!
--
Pietro Cerutti

PGP Public Key:
http://gahr.ch/pgp
Aug 28 '07 #12
On Aug 28, 3:42 pm, Pietro Cerutti <g...@gahr.chwr ote:
i Group,

to my understanding, defining a function parameter as "const" means that
the function is not going to change it.
'Const' is a very poor term used in C language that misleads many
people initially.
Const means 'Read-Only'. It is a qualifier which states that it cannot
be changed using
that particular variable. But, it can be manipulated by accessing the
address of it using pointers.

Karthik Balaguru

Aug 28 '07 #13
karthikbalaguru <ka************ ***@gmail.comwr ites:
'Const' is a very poor term used in C language that misleads many
people initially.
Const means 'Read-Only'. It is a qualifier which states that it cannot
be changed using
that particular variable. But, it can be manipulated by accessing the
address of it using pointers.
Actually, the term is 'const'. In C, the case of letters is
important, so you should take care to be precise.

There is a little more confusion surrounding the C use of 'const'
than your article lets on. In particular, its meaning is quite
different when it is applied to an object definition versus the
target of a pointer. An object whose definition is qualified
with 'const' may not be modified; attempting to modify it yields
undefined behavior. On the other hand, you can always cast
away 'const' from a 'const'-qualified pointer type, and then
attempt to modify the object pointed to. Whether that is valid
depends entirely on how the target object was defined: if it is
modifiable (not 'const'-qualified, not a string literal, etc.),
then it is OK.
--
Just another C hacker.
Aug 28 '07 #14
On Tue, 28 Aug 2007 12:42:42 +0200, Pietro Cerutti <ga**@gahr.ch >
wrote:
>i Group,

to my understanding, defining a function parameter as "const" means that
the function is not going to change it.

Why does the compiler says "return discards qualifiers from pointer
target type" when I *access* a member of an argument defined as const?

Please see the code below:

/*** START TEST.C ***/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define MAX_NAME_SIZE 80
#define MY_NAME "This is my name"

struct my_s
{
char mys_name[MAX_NAME_SIZE+1];
};

void set_mys_name(st ruct my_s *, const char *);
char *get_mys_name(c onst struct my_s *);

int main(void) {
struct my_s *mysp;

mysp = malloc(sizeof *mysp);

set_mys_name(my sp, MY_NAME);

printf("My name is %s\n", get_mys_name(my sp));

return (0);
}

void
set_mys_name(s truct my_s *mys, const char *name)
{
if(!mys) return;
strncpy(mys->mys_name, name, MAX_NAME_SIZE);
}

char *
get_mys_name(c onst struct my_s *mys)
{
if(!mys) return (NULL);
return (mys->mys_name);
}
/*** START TEST.C ***/
gcc -Wall -o test test.c
test.c: In function `get_mys_name':
test.c:39: warning: return discards qualifiers from pointer target type
Based on the subsequent discussion, if you want get_mys_name to accept
a pointer to a non-const struct but still want the function to treat
it as const (so you get diagnostics if you try to modify it), one
approach would be

get_mys_name(st ruct my_s *pmys) /*const removed, p added*/
{
const struct my_s *mys = pmys;
if(!mys) return (NULL);
return (pmys->mys_name); /*only use pmys in return*/
}
Remove del for email
Aug 30 '07 #15
Barry Schwarz wrote:
On Tue, 28 Aug 2007 12:42:42 +0200, Pietro Cerutti <ga**@gahr.ch >
wrote:
>i Group,

to my understanding, defining a function parameter as "const" means that
the function is not going to change it.

Why does the compiler says "return discards qualifiers from pointer
target type" when I *access* a member of an argument defined as const?

Please see the code below:

/*** START TEST.C ***/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define MAX_NAME_SIZE 80
#define MY_NAME "This is my name"

struct my_s
{
char mys_name[MAX_NAME_SIZE+1];
};

void set_mys_name(st ruct my_s *, const char *);
char *get_mys_name(c onst struct my_s *);

int main(void) {
struct my_s *mysp;

mysp = malloc(sizeof *mysp);

set_mys_name(my sp, MY_NAME);

printf("My name is %s\n", get_mys_name(my sp));

return (0);
}

void
set_mys_name(s truct my_s *mys, const char *name)
{
if(!mys) return;
strncpy(mys->mys_name, name, MAX_NAME_SIZE);
}

char *
get_mys_name(c onst struct my_s *mys)
{
if(!mys) return (NULL);
return (mys->mys_name);
}
/*** START TEST.C ***/
>>>gcc -Wall -o test test.c
test.c: In function `get_mys_name':
test.c:39: warning: return discards qualifiers from pointer target type

Based on the subsequent discussion, if you want get_mys_name to accept
a pointer to a non-const struct but still want the function to treat
it as const (so you get diagnostics if you try to modify it), one
approach would be

get_mys_name(st ruct my_s *pmys) /*const removed, p added*/
{
const struct my_s *mys = pmys;
if(!mys) return (NULL);
return (pmys->mys_name); /*only use pmys in return*/
}

Thank you, unfortunately it doesn't help to reach my goal, which would
just be to inform the user that the function doesn't modify the
parameter. I though it could be done using simply the function signature.

--
Pietro Cerutti

PGP Public Key:
http://gahr.ch/pgp
Aug 30 '07 #16
Pietro Cerutti wrote:
Barry Schwarz wrote:
.... snip ...
>>
get_mys_name(s truct my_s *pmys) /*const removed, p added*/ {
const struct my_s *mys = pmys;
if(!mys) return (NULL);
return (pmys->mys_name); /*only use pmys in return*/
}

Thank you, unfortunately it doesn't help to reach my goal, which
would just be to inform the user that the function doesn't modify
the parameter. I though it could be done using simply the function
signature.
Why the fuss? Simply define the function as:

char *get_mys_name(s truct my_s *mys) /* const removed */ {
if (mys) return mys->mys_name;
return NULL;
}

No fuss, no muss, no complaints. Ball, keep eye on.

If the function handles objects that are initially const, use:

const char *get_mys_name(c onst struct my_s *mys) {
if (mys) return mys->mys_name;
return NULL;
}

and now errors will show up at the correct points.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home .att.net>

--
Posted via a free Usenet account from http://www.teranews.com

Aug 30 '07 #17
On Thu, 30 Aug 2007 15:17:10 +0200, Pietro Cerutti <ga**@gahr.ch >
wrote:
>Barry Schwarz wrote:
>On Tue, 28 Aug 2007 12:42:42 +0200, Pietro Cerutti <ga**@gahr.ch >
wrote:
>>i Group,

to my understanding, defining a function parameter as "const" means that
the function is not going to change it.

Why does the compiler says "return discards qualifiers from pointer
target type" when I *access* a member of an argument defined as const?

Please see the code below:

/*** START TEST.C ***/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define MAX_NAME_SIZE 80
#define MY_NAME "This is my name"

struct my_s
{
char mys_name[MAX_NAME_SIZE+1];
};

void set_mys_name(st ruct my_s *, const char *);
char *get_mys_name(c onst struct my_s *);

int main(void) {
struct my_s *mysp;

mysp = malloc(sizeof *mysp);

set_mys_name(my sp, MY_NAME);

printf("My name is %s\n", get_mys_name(my sp));

return (0);
}

void
set_mys_name( struct my_s *mys, const char *name)
{
if(!mys) return;
strncpy(mys->mys_name, name, MAX_NAME_SIZE);
}

char *
get_mys_name( const struct my_s *mys)
{
if(!mys) return (NULL);
return (mys->mys_name);
}
/*** START TEST.C ***/

gcc -Wall -o test test.c
test.c: In function `get_mys_name':
test.c:39: warning: return discards qualifiers from pointer target type

Based on the subsequent discussion, if you want get_mys_name to accept
a pointer to a non-const struct but still want the function to treat
it as const (so you get diagnostics if you try to modify it), one
approach would be

get_mys_name(s truct my_s *pmys) /*const removed, p added*/
{
const struct my_s *mys = pmys;
if(!mys) return (NULL);
return (pmys->mys_name); /*only use pmys in return*/
}


Thank you, unfortunately it doesn't help to reach my goal, which would
just be to inform the user that the function doesn't modify the
parameter. I though it could be done using simply the function signature.
In that case, go back to your original code and add a *single* cast to
your return statement.
Remove del for email
Sep 1 '07 #18

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

Similar topics

0
2682
by: Juan Carlos CORUÑA | last post by:
Hello all, I have developed an automation server using Mark's win32 extensions and I must return a IStream COM object from one method of the automation server. Here is an extract of my code: class Stream: _public_methods_ =
6
95852
by: Jason | last post by:
I have a function (Inet_ntop) that returns const char * and if I try to assign that return value to a char * variable, I get the gcc error message: warning: assignment discards qualifiers from pointer target type Does anyone know what this warning means? Why do I get it? The program compiles and appears to work, but I'd like to understand the warning. Here is basically what the code looks like: char *str;
12
4888
by: Charlie Zender | last post by:
Hi, I am unable to compile a large body of code with extremely pedantic compile time checks activate, so that warnings cause errors. With GCC 3.3.1, I do this with gcc -std=c99 -pedantic -Wall -Wunused -Werror -W -Wmissing-prototypes -Wconversion -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -c -o foo.o foo.c
8
2596
by: Roger Leigh | last post by:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 A lot of functions use const pointer arguments. If I have a non-const pointer, it is transparently made const when I pass it to the function, e.g. char * -> const char *. However, this does not appear to work when I add another level of indirection: void test1 (char **value) {}
2
2973
by: Markus Dehmann | last post by:
I am trying to make a pair with a string and an auto_ptr: #include <iostream> #include <map> using namespace std; int main(){ auto_ptr<intp(new int(3)); make_pair("x",p); }
4
2543
by: rohitsagar | last post by:
I want to do fork from a program Code is very simple, below is the code, it just execute a executable called a.exe, I want to run a.exe 600 times. #include<stdio.h> #include<stdlib.h> void main() { pid_t pid;
2
2259
by: Thelma Lubkin | last post by:
I use my own matrix and vector classes. I wrote them before such things were generally available and I've stuck with them ever since. I've just added an Octonion class derived from the vectors class and I'm trying to do some matrix arithmetic where the elements of the matrices are Octonions. (My Octonions are essentially 8-component vectors with a multiplication table that I compute at runtime. Like vectors, they are a template class, but...
4
8919
by: Andre | last post by:
Hi All, When I compile the following piece of code with gcc, I get 3 "warning: initialization discards qualifiers from pointer target type" messages which refer to the 3 lines marked in the code. What's wrong with these lines? I searched the web for it, but didn't find anything useful. Thanks,
49
2736
by: Davy | last post by:
Hi all, I am writing a function, which return the pointer of the int. But it seems to be wrong. Any suggestion? int * get_p_t(int t) { return &t; } int main()
0
9591
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9425
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
10053
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
10001
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
6676
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5312
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
5449
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3573
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2816
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.