Application of Function Pointers learning Demo

Source: Internet
Author: User

Learn the application of function pointers, simple demo

#include "stdafx.h" #include "SubClass.h";//function pointer typedef int (*operation) (int a,int b);//define INT type function pointer typedef struct _str{ int result;operation opt;} STR;//A and b add int Add (int a, int b) {    return a + b;} A and B are multiplied by int Multi (int a, int b) {    return a * b;} int _tmain (int argc, _tchar* argv[]) {STR str;str.opt=add;str.result=str.opt (5,3);cout<< "5+3=" << Str.result<<endl;str.opt=multi;str.result=str.opt (5,3);cout<< "5*3=" <<str.result<<endl; return 0;}

  

Application of Function Pointers learning Demo

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.