if defined elif else endif

版权声明:本文为博主原创文章,未经博主允许不得转载。个人博客:www.blogtextbook.com https://blog.csdn.net/DZRYWYBL/article/details/86545504
#if defined(CREDIT)
    credit();
#elif defined(DEBIT)
    debit();
#else
    printerror();
#endif

猜你喜欢

转载自blog.csdn.net/DZRYWYBL/article/details/86545504