Linux 2.6 커 널 - 구조 초기 화
2254 단어 linux
#include<stdio.h>
#include<string.h>
struct test {
int test_value1;
float test_value2;
char *test_value3;
};
int main(void)
{
int i;
char my_name[] = "DLUTBruceZhang";
char my_school[] = "DLUT";
for(i = 0; i < 2; i++){
if (i % 2 == 0){
struct test my_test = {
.test_value1 = 10,
.test_value2 = 10.0,
.test_value3 = my_name,
};
printf("test_value1 = %d, test_value2 = %f,\
test_value3 = %s
", my_test.test_value1,
my_test.test_value2, my_test.test_value3);
} else {
struct test my_test = {
.test_value1 = 100,
.test_value2 = 100.0,
.test_value3 = my_school,
};
printf("test_value1 = %d, test_value2 = %f,\
test_value3 = %s
", my_test.test_value1,
my_test.test_value2, my_test.test_value3);
}
}
struct test my_test = {
/*.test_value1 = 10,*/
/*.test_value2 = 10.0,*/
/*.test_value3 = my_name,*/
};
printf("test_value1 = %d, test_value2 = %f,\
test_value3 = %s
", my_test.test_value1,
my_test.test_value2, my_test.test_value3);
return 0;
}
분석:
1. 먼저 구조 체 의 정 의 를 내 립 니 다. 세 개의 필드, 하나의 정형, 하나의 부동 소수점, 하나의 문자 포인터 가 포함 되 어 있 습 니 다.
struct test {int test_value1;float test_value2;char *test_value3; };2. 두 번 의 초기 값 을 부여 하고 상황 에 따라 값 을 부여 합 니 다. 할당 방법 은 Linux 커 널 인 코딩 규범 중의 방법 을 사용 합 니 다. (여기 서 식별 자 를 무시 합 니 다)
struct test my_test = {.test_value1 = 10,.test_value2 = 10.0,.test_value3 = my_name,};
struct test my_test = {.test_value1 = 100,.test_value2 = 100.0,.test_value3 = my_school,};
3. 초기 값 을 부여 하지 않 는 경 우 는 정형 기본 값 0, 부동 소수점 기본 값 0.0, 문자 포인터 기본 값 NULL
struct test my_test = {/*.test_value1 = 10,*//*.test_value2 = 10.0,*//*.test_value3 = my_name,*/};
다음은 이 테스트 프로그램 을 실행 하여 상술 한 설명 을 검증 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
용감한 바로 가기 및 우분투 응용 프로그램안녕하세요 여러분, 이 기사에서는 모든 사이트에서 pwa를 생성하고 실행기 응용 프로그램으로 추가하는 방법을 설명하고 싶습니다. 일부 웹사이트는 PWA로 설치를 허용하지 않지만 유사한 애플리케이션을 원합니다. 1. ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.