( উপরের উত্তরগুলি কারণটি বেশ স্পষ্টভাবে ব্যাখ্যা করেছে, তবে প্যাডিংয়ের আকার সম্পর্কে সম্পূর্ণ পরিষ্কার নয় বলে আমি লস্ট আর্ট অফ স্ট্রাকচার প্যাকিং থেকে যা শিখেছি সে অনুসারে আমি একটি উত্তর যুক্ত করব , তবে এটি সীমাবদ্ধ নয় C
, তবে বিকশিত হয়েছে) এছাড়াও প্রযোজ্য Go
, Rust
। )
মেমরি সারিবদ্ধ (কাঠামোর জন্য)
নিয়মাবলী:
- প্রতিটি পৃথক সদস্যের আগে, এখানে প্যাডিং থাকবে যাতে এটি কোনও ঠিকানায় শুরু করতে যাতে আকারের সাথে বিভাজ্য।
যেমন bit৪ বিট সিস্টেমের মধ্যে, int
4 দিয়ে বিভাজ্য ঠিকানা থেকে শুরু করা উচিত এবং long
8 short
দ্বারা 2 দ্বারা।
char
এবং char[]
বিশেষ, কোনও মেমরি ঠিকানা হতে পারে, তাই তাদের আগে প্যাডিংয়ের দরকার নেই।
- জন্য
struct
, প্রতিটি পৃথক সদস্যের প্রান্তিককরণের প্রয়োজন ব্যতীত, সম্পূর্ণ কাঠামোর আকার নিজেই বড় আকারের পৃথক সদস্যের আকার দ্বারা বিভাজ্য আকারে প্রান্তিককরণ করা হবে, শেষে প্যাডিংয়ের মাধ্যমে।
যেমন স্ট্রাক্টের বৃহত্তম সদস্য যদি long
8 দ্বারা বিভাজ্য হয় int
তবে 4 দ্বারা, short
তারপরে 2 দ্বারা by
সদস্যের আদেশ:
- সদস্যের ক্রমটি কাঠামোর প্রকৃত আকারকে প্রভাবিত করতে পারে, তাই এটি মনে রাখবেন। উদাহরণস্বরূপ
stu_c
এবং stu_d
নীচের উদাহরণ থেকে একই সদস্য রয়েছে তবে বিভিন্ন ক্রমে, এবং ফলস্বরূপ 2 টি স্ট্রাক্টের জন্য বিভিন্ন আকারের ফলস্বরূপ।
স্মৃতিতে ঠিকানা (কাঠামোর জন্য)
নিয়মাবলী:
- 64 বিট সিস্টেম
স্ট্রাক্ট ঠিকানা (n * 16)
বাইট থেকে শুরু হয় । ( আপনি নীচের উদাহরণে দেখতে পারেন, structs এর সব মুদ্রিত হেক্স ঠিকানাগুলি দিয়ে শেষ 0
। )
কারণ : সম্ভব বৃহত্তম পৃথক struct হয় সদস্য 16 বাইট ( long double
)।
- (আপডেট) যদি কোনও স্ট্রাক্টে কেবল
char
সদস্য হিসাবেথাকে তবেএর ঠিকানাটি কোনও ঠিকানায় শুরু হতে পারে।
খালি স্থান :
- 2 স্ট্রকের মধ্যে ফাঁকা স্থানটি নন-স্ট্রাক্ট ভেরিয়েবলগুলি ব্যবহার করতে পারে যা মাপসই হতে পারে below
উদাহরণস্বরূপ test_struct_address()
নীচে, ভেরিয়েবলটি x
সংলগ্ন স্ট্রাক্ট g
এবং h
। ঘোষিত
হোক x
বা না হোক , h
ঠিকানার ঠিকানা পরিবর্তন হবে না, x
কেবল g
অপচয় করা শূন্য স্থানটি পুনরায় ব্যবহার করেছেন ।
অনুরূপ ক্ষেত্রে y
।
উদাহরণ
( bit৪ বিট সিস্টেমের জন্য )
memory_align.c :
/**
* Memory align & padding - for struct.
* compile: gcc memory_align.c
* execute: ./a.out
*/
#include <stdio.h>
// size is 8, 4 + 1, then round to multiple of 4 (int's size),
struct stu_a {
int i;
char c;
};
// size is 16, 8 + 1, then round to multiple of 8 (long's size),
struct stu_b {
long l;
char c;
};
// size is 24, l need padding by 4 before it, then round to multiple of 8 (long's size),
struct stu_c {
int i;
long l;
char c;
};
// size is 16, 8 + 4 + 1, then round to multiple of 8 (long's size),
struct stu_d {
long l;
int i;
char c;
};
// size is 16, 8 + 4 + 1, then round to multiple of 8 (double's size),
struct stu_e {
double d;
int i;
char c;
};
// size is 24, d need align to 8, then round to multiple of 8 (double's size),
struct stu_f {
int i;
double d;
char c;
};
// size is 4,
struct stu_g {
int i;
};
// size is 8,
struct stu_h {
long l;
};
// test - padding within a single struct,
int test_struct_padding() {
printf("%s: %ld\n", "stu_a", sizeof(struct stu_a));
printf("%s: %ld\n", "stu_b", sizeof(struct stu_b));
printf("%s: %ld\n", "stu_c", sizeof(struct stu_c));
printf("%s: %ld\n", "stu_d", sizeof(struct stu_d));
printf("%s: %ld\n", "stu_e", sizeof(struct stu_e));
printf("%s: %ld\n", "stu_f", sizeof(struct stu_f));
printf("%s: %ld\n", "stu_g", sizeof(struct stu_g));
printf("%s: %ld\n", "stu_h", sizeof(struct stu_h));
return 0;
}
// test - address of struct,
int test_struct_address() {
printf("%s: %ld\n", "stu_g", sizeof(struct stu_g));
printf("%s: %ld\n", "stu_h", sizeof(struct stu_h));
printf("%s: %ld\n", "stu_f", sizeof(struct stu_f));
struct stu_g g;
struct stu_h h;
struct stu_f f1;
struct stu_f f2;
int x = 1;
long y = 1;
printf("address of %s: %p\n", "g", &g);
printf("address of %s: %p\n", "h", &h);
printf("address of %s: %p\n", "f1", &f1);
printf("address of %s: %p\n", "f2", &f2);
printf("address of %s: %p\n", "x", &x);
printf("address of %s: %p\n", "y", &y);
// g is only 4 bytes itself, but distance to next struct is 16 bytes(on 64 bit system) or 8 bytes(on 32 bit system),
printf("space between %s and %s: %ld\n", "g", "h", (long)(&h) - (long)(&g));
// h is only 8 bytes itself, but distance to next struct is 16 bytes(on 64 bit system) or 8 bytes(on 32 bit system),
printf("space between %s and %s: %ld\n", "h", "f1", (long)(&f1) - (long)(&h));
// f1 is only 24 bytes itself, but distance to next struct is 32 bytes(on 64 bit system) or 24 bytes(on 32 bit system),
printf("space between %s and %s: %ld\n", "f1", "f2", (long)(&f2) - (long)(&f1));
// x is not a struct, and it reuse those empty space between struts, which exists due to padding, e.g between g & h,
printf("space between %s and %s: %ld\n", "x", "f2", (long)(&x) - (long)(&f2));
printf("space between %s and %s: %ld\n", "g", "x", (long)(&x) - (long)(&g));
// y is not a struct, and it reuse those empty space between struts, which exists due to padding, e.g between h & f1,
printf("space between %s and %s: %ld\n", "x", "y", (long)(&y) - (long)(&x));
printf("space between %s and %s: %ld\n", "h", "y", (long)(&y) - (long)(&h));
return 0;
}
int main(int argc, char * argv[]) {
test_struct_padding();
// test_struct_address();
return 0;
}
ফাঁসির ফলাফল - test_struct_padding()
:
stu_a: 8
stu_b: 16
stu_c: 24
stu_d: 16
stu_e: 16
stu_f: 24
stu_g: 4
stu_h: 8
ফাঁসির ফলাফল - test_struct_address()
:
stu_g: 4
stu_h: 8
stu_f: 24
address of g: 0x7fffd63a95d0 // struct variable - address dividable by 16,
address of h: 0x7fffd63a95e0 // struct variable - address dividable by 16,
address of f1: 0x7fffd63a95f0 // struct variable - address dividable by 16,
address of f2: 0x7fffd63a9610 // struct variable - address dividable by 16,
address of x: 0x7fffd63a95dc // non-struct variable - resides within the empty space between struct variable g & h.
address of y: 0x7fffd63a95e8 // non-struct variable - resides within the empty space between struct variable h & f1.
space between g and h: 16
space between h and f1: 16
space between f1 and f2: 32
space between x and f2: -52
space between g and x: 12
space between x and y: 12
space between h and y: 8
সুতরাং প্রতিটি ভেরিয়েবলের ঠিকানা সূচনা হ'ল g: d0 x: dc h: e0 y: e8