当前位置:网站首页>U++ metadata specifier learning notes
U++ metadata specifier learning notes
2022-07-07 05:04:00 【It's a bald rabbit】
UCLASS == class
UENUM == enumeration
UINTERFACE == Interface
USTRUCT == Structure
UFUNCTION == The body of the function
UPROPERTY == Variable
UMETA == Metadata specifier
UENUM()
enum class EMyEnum : uint8
{
// DefaultValue Tooltip
DefaultValue = 0 UMETA(MetaTag1="Value1", MetaTag2, ..),
// ValueWithoutMetaSpecifiers Tooltip
ValueWithoutMetaSpecifiers,
// ValueWithMetaSpecifiers Tooltip
ValueWithMetaSpecifiers UMETA((MetaTag1="Value1", MetaTag2, ..),
// FinalValue Tooltip
FinalValue (MetaTag1="Value1", MetaTag2, ..)
};






边栏推荐
- 窗口可不是什么便宜的东西
- The most complete learning rate adjustment strategy in history LR_ scheduler
- Operand of null-aware operation ‘!‘ has type ‘SchedulerBinding‘ which excludes null.
- STM32封装ESP8266一键配置函数:实现实现AP模式和STA模式切换、服务器与客户端创建
- Appium practice | make the test faster, more stable and more reliable (I): slice test
- Chapter 9 Yunji datacanvas was rated as 36 krypton "the hard core technology enterprise most concerned by investors"
- Sublime tips
- LabVIEW在打开一个新的引用,提示内存已满
- 装饰器基础学习02
- Basic knowledge of road loss of 3GPP channel model
猜你喜欢
随机推荐
Common Oracle SQL statements
Introduction to namespace Basics
Error: No named parameter with the name ‘foregroundColor‘
Appium practice | make the test faster, more stable and more reliable (I): slice test
R language principal component PCA, factor analysis, clustering analysis of regional economy analysis of Chongqing Economic Indicators
Understand common network i/o models
AOSP ~Binder 通信原理 (一) - 概要
Flask项目使用flask-socketio异常:TypeError: function() argument 1 must be code, not str
批量归一化(标准化)处理
offer如何选择该考虑哪些因素
STM32 encapsulates the one key configuration function of esp8266: realize the switching between AP mode and sta mode, and the creation of server and client
【數模】Matlab allcycles()函數的源代碼(2021a之前版本沒有)
JDBC link Oracle reference code
Field data acquisition and edge calculation scheme of CNC machine tools
一文搞懂常见的网络I/O模型
Operand of null-aware operation ‘!‘ has type ‘SchedulerBinding‘ which excludes null.
MySQL数据库(基础篇)
Chapter 9 Yunji datacanvas company has been ranked top 3 in China's machine learning platform market
Liste des hôtes d'inventaire dans ansible (je vous souhaite des fleurs et de la romance sans fin)
[practice leads to truth] is the introduction of import and require really the same as what is said on the Internet







