objective-c – 使用Doxygen使用@see命令引用特定的类方法

前端之家收集整理的这篇文章主要介绍了objective-c – 使用Doxygen使用@see命令引用特定的类方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法使用doxygen @see命令引用特定的类方法.

假设我有一个类Server,其方法如下所示

@interface Server : NSObject

- (void) start:(NSInteger) mask;

@end

假设我有另一个具有Server对象的类.

@interface RandomNumberGeneration

/// How can I reference the method start from 
/// class server using the command @see
/// @see ????
+ (NSInteger) generate;

@end

那么,有没有办法引用类Server的方法启动?

解决方法

here复制

@see text | URL | classname | classname#methodname Use this to tag to
refer the reader to some other source of related information.

所以我想它应该是:

/// @see Server#start:
原文链接:https://www.f2er.com/c/111446.html

猜你在找的C&C++相关文章