当前位置:网站首页>C language - bit segment
C language - bit segment
2022-07-06 08:03:00 【Orange cat】
Bit segment
- What is a bit segment ?
C Language allows bits in a structure (bit) Specifies the memory length of its members in units
Such members in bits are called bit segments . With bit segments, data can be stored in fewer bits .
Example :
above
_a : 2
It means occupy 2 individual bit position_b : 5
It means occupy 5 individual bit position_c : 10
It means occupy 10 individual bit position_d : 30
It means occupy 30 individual bit positionReview your knowledge :
8 bit = 1 byte
4 byte = A plastic surgery (int)
All the members above add up to 47 bit, Is probably The size of two reshapes
Then why is the answer 8 ?
So how does the median segment of the structure in the above example allocate space ?
Bit segment memory allocation
- The members of a segment can be int unsigned int signed int Or is it char ( It belongs to the plastic family ) type
- The space of the bit segment is based on 4 Bytes ( int ) perhaps 1 Bytes ( char ) The way to open up .
- Bit segments involve many uncertainties , Bit segments are not cross platform , Pay attention to portable program should avoid using bit segment
- The number of bits occupied by the bit field cannot exceed the maximum number of bits that the basic type can represent
That is, bit segments cannot be stored across bytes . for example :int It is Zhan 4 Bytes , Then it can only be 32 bit position , It can't be exceeded
Example :
struct S
{
char a:3;
char b:4;
char c:5;
char d:4;
};
int main()
{
struct S n = {
0 };
n.a = 10;
n.b = 12;
n.c = 3;
n.d = 4;
return 0;
}
The illustration :
This is vs 2022 Compiler test data
- I said before
The space of the bit segment is according to 4 Bytes ( int ) perhaps 1 Bytes ( char ) The way to open up
So the first time is to open up 4 individual int Type of space - Bit segment in
A byte
Internal data is used firstLow address
In the use ofHigh address
, Use... From right to left (char type )
If it is int type , It's a plastic surgery from right to left - When there is not enough space left in one space for the next member , It will be wasted
- Don't give it a name in the position segment , Unable to access the bit segment , But the calculation size still takes up space
- The bit segment cannot be & Address fetch operation
The cross platform problem of bit segment
- int It's uncertain whether a bit segment is treated as a signed number or an unsigned number .
- The number of the largest bits in the bit segment cannot be determined
for example :16 The machine is the largest 16,32 The machine is the largest 32, It's written in 27, stay 16 It's a plane
There will be problems with the device . - The members in the bit segment are allocated from left to right in memory , Or right to left allocation criteria have not yet been defined .
- When a structure contains two bit segments , The second segment is relatively large , Cannot hold the remaining bits of the first bit segment , yes
Discard the remaining bits or use , This is uncertain .
- summary : Compared to the structure , Bit segments can achieve the same effect , But it can save a lot of space , But there are cross platform problems
边栏推荐
- 861. Score after flipping the matrix
- 1204 character deletion operation (2)
- Onie supports pice hard disk
- Introduction to number theory (greatest common divisor, prime sieve, inverse element)
- 【T31ZL智能视频应用处理器资料】
- Webrtc series-h.264 estimated bit rate calculation
- Chinese Remainder Theorem (Sun Tzu theorem) principle and template code
- [Yugong series] February 2022 U3D full stack class 011 unity section 1 mind map
- On why we should program for all
- 将 NFT 设置为 ENS 个人资料头像的分步指南
猜你喜欢
A Closer Look at How Fine-tuning Changes BERT
让学指针变得更简单(三)
Nft智能合约发行,盲盒,公开发售技术实战--拼图篇
Artcube information of "designer universe": Guangzhou implements the community designer system to achieve "great improvement" of urban quality | national economic and Information Center
Qualitative risk analysis of Oracle project management system
DataX self check error /datax/plugin/reader/_ drdsreader/plugin. Json] does not exist
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
National economic information center "APEC industry +": economic data released at the night of the Spring Festival | observation of stable strategy industry fund
21. Delete data
Chinese Remainder Theorem (Sun Tzu theorem) principle and template code
随机推荐
Asia Pacific Financial Media | "APEC industry +" Western Silicon Valley invests 2trillion yuan in Chengdu Chongqing economic circle to catch up with Shanghai | stable strategy industry fund observatio
软件开发的一点随记
[非线性控制理论]9_非线性控制理论串讲
NFT smart contract release, blind box, public offering technology practice -- jigsaw puzzle
21. Delete data
Data governance: data quality
National economic information center "APEC industry +": economic data released at the night of the Spring Festival | observation of stable strategy industry fund
Linked list interview questions (Graphic explanation)
"Designer universe": "benefit dimension" APEC public welfare + 2022 the latest slogan and the new platform will be launched soon | Asia Pacific Financial Media
[research materials] 2021 Research Report on China's smart medical industry - Download attached
Learn Arduino with examples
MySQL view tablespace and create table statements
Epoll and IO multiplexing of redis
[Yugong series] February 2022 U3D full stack class 010 prefabricated parts
Chinese Remainder Theorem (Sun Tzu theorem) principle and template code
远程存储访问授权
备份与恢复 CR 介绍
Solution: intelligent site intelligent inspection scheme video monitoring system
让学指针变得更简单(三)
Leetcode question brushing record | 203_ Remove linked list elements