CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

syntax question.

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
rikotech8



Joined: 10 Dec 2011
Posts: 376
Location: Sofiq,Bulgariq

View user's profile Send private message

syntax question.
PostPosted: Fri May 25, 2012 2:58 am     Reply with quote

Hi everyone!
Excuse my bad English!
I am wondering what is the meaning of this type declaring variables?
Code:

int8 variable : 2;

What is :2 following the variable_name?
Thank you guys in advance!
Ttelmah



Joined: 11 Mar 2010
Posts: 19326

View user's profile Send private message

PostPosted: Fri May 25, 2012 3:33 am     Reply with quote

Bitfield.

You can create smaller 'pieces' inside an integer, corresponding to particular bits. So as posted, creates an int8, in which you are only using the low two bits (value from 0 to 3). Normally you'd use it in something like a structure, so you can have one integer split into several parts with separate names for each.
Will be in a standard C reference book.
From K&R second edition:
Code:

struct {
    unsigned int is_keyword :1;
    unsigned int is_extern :1;
    unsigned int is_static :1;
} flags;
This defines a variable called flags, that contains three 1-bit field. The number following the colon represents the field width in bits. The fields declared unsigned int to ensure that they are unsigned quantities.
Individual fields are referenced in the same way as other structure members. (snipped)
Fields behave like small integers and may participate in arithmetic expressions just like other integers."

Also in the manual if you look in data definitions, it shows it, but doesn't do much to explain it:
Code:

For example:
struct data_record {
         int   a [2];
         int  b : 2; /*2 bits */
         int  c : 3; /*3  bits*/
         int d;
       }data_var;                             // data_record is a structure type


Best Wishes
rikotech8



Joined: 10 Dec 2011
Posts: 376
Location: Sofiq,Bulgariq

View user's profile Send private message

PostPosted: Fri May 25, 2012 4:49 am     Reply with quote

But there is something I don't understand.
Inside the structure, any member takes part of the 8-bit variable flag, but how could I know which one takes first bit, which one second bit and so on......
Also, can I declare variable (flag) bigger than 8 bit?
I hope you understand my question! Smile
jeremiah



Joined: 20 Jul 2010
Posts: 1321

View user's profile Send private message

PostPosted: Fri May 25, 2012 6:55 am     Reply with quote

This is all in the compiler manual.

The order of the fields determine which member is which bit.
You can do members larger than 8bits, but you do need to take care to not make certain members "cross" the byte boundary. Everything needs to align to the byte boundary.


Last edited by jeremiah on Sat May 26, 2012 9:43 am; edited 1 time in total
rikotech8



Joined: 10 Dec 2011
Posts: 376
Location: Sofiq,Bulgariq

View user's profile Send private message

re
PostPosted: Sat May 26, 2012 6:38 am     Reply with quote

Ok I see now.
Thank you!
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group