Static declaration of a pointer variable

Source: Internet
Author: User

I saw it in the Android GPS simulator code and recorded it as interesting.

The first is the definition of struct:


[Cpp]
/* This is the state of our connection to the qemu_gpsd daemon */
Typedef struct {
Int init;
Int fd;
GpsCallbacks callbacks;
Pthread_t thread;
Int control [2];
} GpsState;

/* This is the state of our connection to the qemu_gpsd daemon */
Typedef struct {
Int init;
Int fd;
GpsCallbacks callbacks;
Pthread_t thread;
Int control [2];
} GpsState;
Then declare the struct pointer variable

Static GpsState _ gps_state [1];


Normal use:


[Cpp]
Static int
Qemu_gps_init (GpsCallbacks * callbacks)
{
GpsState * s = _ gps_state;
 
If (! S-> init)
Gps_state_init (s, callbacks );
 
If (s-> fd <0)
Return-1;
 
Return 0;
}

Static int
Qemu_gps_init (GpsCallbacks * callbacks)
{
GpsState * s = _ gps_state;

If (! S-> init)
Gps_state_init (s, callbacks );

If (s-> fd <0)
Return-1;

Return 0;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.