gpt4 book ai didi

java - 在 Javadoc 中包含电子邮件的正确方法是什么?

转载 作者:IT老高 更新时间:2023-10-28 21:18:48 25 4
gpt4 key购买 nike

我喜欢将我的电子邮件地址放在 @author 标记中,并希望它们在生成的 Javadoc 中成为可点击的 mailto: 链接。

我应该如何正确地做到这一点?

/**
* I currently do the following, but would like to have my name
* displayed as the link rather than the email itself.
*
* @author {@link "mailto:my_email@email.example.com"}
*/
public class Useless { }

/**
* I've tried this, but get warnings about unexpexted text where my name is.
*
* @author {@link "mailto:my_email@email.example.com" "Benoit St-Pierre"}
*/
public class Useless { }

最佳答案

{@link} 是 Javadoc 特定的标记。但是,Javadocs 是 HTML - 所以您可以简单地使用

/**
* Embed HTML directly into the Javadoc.
*
* @author <a href="mailto:my_email@email.exmaple.com">Benoit St-Pierre</a>
*/
public class Useless { }

这是否是一个好主意是另一回事。 :-)

关于java - 在 Javadoc 中包含电子邮件的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1509817/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com