To sum up, remind yourself

Source: Internet
Author: User

Basic knowledge: today, when I was debugging messages sent and received by the server ZJ, I had a bug. I chose to call the log and finally checked out the two small errors...

Basic post-work knowledge forgotten ~~~~ Note down.

 

1. switch_case statement. To execute the same sentence in multiple cases, write the following statement:

Case:

Case B:

Case C:

Do_something ();

Break;


Cannot be written:

Case:

B:

C:

Do_something ():

Break;


Even if you write an error, the compiler cannot help you check this error (My vs2005 ).


2. for applications of static variables, values are assigned only for the first time and will not be assigned in the future. OnProgramIs written

Static uint32 msgtype = PMSG-> uitype;

Switch (msgtype)

{

...............

}

As a result, the same message is always received ....

In the future, we will use local variables in the function...


Related Article

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.