- Kotlin Programming By Example
- Iyanu Adelekan
- 73字
- 2021-08-27 20:00:10
Doc comments
This type of comment is similar to a multiline comment. The major difference is that it is used to document code within a program. A doc comment starts with a backslash followed by two asterisk characters (/**) and ends with an asterisk followed by a backslash (*/):
/**
* Adds an [item] to the queue.
* @return the new size of the queue.
*/
fun enqueue(item: Object): Int { ... }
推薦閱讀
- Mastering JavaScript Object-Oriented Programming
- ReSharper Essentials
- Learn Type:Driven Development
- Unity Virtual Reality Projects
- R語言游戲數據分析與挖掘
- Java從入門到精通(第5版)
- 微信小程序開發解析
- 詳解MATLAB圖形繪制技術
- Windows Embedded CE 6.0程序設計實戰
- Python程序設計與算法基礎教程(第2版)(微課版)
- Laravel Application Development Blueprints
- C指針原理揭秘:基于底層實現機制
- C# 7.0本質論
- 3ds Max 2018從入門到精通
- C# 7 and .NET Core 2.0 Blueprints