C + + program translation

Source: Internet
Author: User

C + + When it first appeared, C + + programs need to be translated into a C program and compiled by the C compiler to run.

Consider translating the following C + + programs:

class ccar {public:    int price ;     void Setprice (int  p);}; void Ccar::setprice (int  p) {    = p;} int Main () {    ccar car;    Car. Setprice (a);     return 0 ;}

1) c does not have a class data type, it needs to use a struct instead. int price; Translate to a field in the struct, as follows:

struct ccar {    int price ;};

2) member functions in C + + class, Setprice () into C function, need to pass in struct pointer

void Setprice (struct ccar *spint  p) {    sp->price = p;}

3) Translate main function

int Main () {    struct  ccar car;    Setprice (a);         return 0 ;}

C + + program translation

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.