C++ #include and #import difference(C++#include和#import的区别)
问题描述
#include
和#import
在C++中有什么区别?
What is the difference between #include
and #import
in C++?
推荐答案
#import
是微软特有的东西,显然只适用于 COM 或 .NET 的东西.
#import
is a Microsoft-specific thing, apparently for COM or .NET stuff only.
#include
是标准 C/C++ 预处理器语句,用于在源代码文件中包含头文件(或偶尔包含其他源代码).
#include
is a standard C/C++ preprocessor statement, used for including header (or occasionally other source code) files in your source code file.
这篇关于C++#include和#import的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++#include和#import的区别
基础教程推荐
- C语言基础全局变量与局部变量教程详解 2022-12-31
- 一文带你了解C++中的字符替换方法 2023-07-20
- 详解c# Emit技术 2023-03-25
- C++中的atoi 函数简介 2023-01-05
- 如何C++使用模板特化功能 2023-03-05
- C++使用easyX库实现三星环绕效果流程详解 2023-06-26
- C利用语言实现数据结构之队列 2022-11-22
- C语言 structural body结构体详解用法 2022-12-06
- C++详细实现完整图书管理功能 2023-04-04
- C/C++编程中const的使用详解 2023-03-26