宏 CLASS 在 C 中等效
在 C 中,與提供的
在 C 中,與提供的FUNCTION
解如提供的答案所述,可以使用typeid( *this).name() 方法實作類似的功能。但是,此方法在靜態方法中使用時有其限制。 對於靜態方法和一般場景,可以使用使用巨集的替代方法。一種方法是利用
PRETTY_FUNCTION巨集:
對於方法名稱:#define __METHOD_NAME__ methodName(__PRETTY_FUNCTION__) inline std::string methodName(const std::string& prettyFunction) { // Extract and return the method name ... }
對於類別名稱:
#define __CLASS_NAME__ className(__PRETTY_FUNCTION__) inline std::string className(const std::string& prettyFunction) { // Extract and return the class name ... }
對於類別名稱:
請注意,這種方法依賴於PRETTY_FUNCTION 宏,特定於 gcc 等某些編譯器。以上是C語言中如何取得目前類別名稱?的詳細內容。更多資訊請關注PHP中文網其他相關文章!