using struct keyword in variable declaration in C++(在 C++ 中的变量声明中使用 struct 关键字)
问题描述
我感觉这可能与 C 语法有关,但我的编程生涯是从 C++ 开始的,所以我不确定.
I have a feeling this may be related to C syntax, but I started my programming life with C++ so I am not sure.
基本上我见过这个:
struct tm t;
memset( &t, 0, sizeof(struct tm) );
我对这种语法有点困惑,因为通常我希望上面的内容看起来像这样:
I am a bit confused with this syntax, as normally I would expect the above to instead look like this:
tm t;
memset( &t, 0, sizeof(tm) );
两者有什么区别,为什么用前者代替?
What is the difference between the two, and why is the former used instead?
我所指的结构tm
在wchar.h
中,定义如下:
The structure tm
that I am referring to is in wchar.h
, and the definition is as follows:
struct tm {
int tm_sec; /* seconds after the minute - [0,59] */
int tm_min; /* minutes after the hour - [0,59] */
int tm_hour; /* hours since midnight - [0,23] */
int tm_mday; /* day of the month - [1,31] */
int tm_mon; /* months since January - [0,11] */
int tm_year; /* years since 1900 */
int tm_wday; /* days since Sunday - [0,6] */
int tm_yday; /* days since January 1 - [0,365] */
int tm_isdst; /* daylight savings time flag */
};
推荐答案
简单的答案是 struct
关键字的存在来限制标识符 tm
的查找仅用户定义的类类型.它可能是为了与 C 兼容,在需要的地方.
The simple answer is that the struct
keyword there is present to restrict the lookup of the identifier tm
to only user defined class types. It is probably left for compatibility with C, where it is required.
与其他人所说的相反,没有 auto-typedef 这样的东西,C 和 C++ 在如何管理用户定义类型的标识符方面也没有区别.唯一的区别在于查找.
Contrary to what others say, there is no such thing as auto-typedef, nor do C and C++ differ with respect to how the identifiers for user defined types are managed. The only difference is in lookup.
您可以在此处
这篇关于在 C++ 中的变量声明中使用 struct 关键字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中的变量声明中使用 struct 关键字
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01