스칼라의 변수 문서 (Variables documentation in Scala)


문제 설명

스칼라의 변수 문서 (Variables documentation in Scala)

저는 Scala를 처음 접했고(Java 출신) 클래스 변수에 대한 문서를 생성하는 올바른 방법이 무엇인지 알고 싶습니다.

예를 들어 다음 코드가 있는 경우 :

class MyClass (bar:bar) {

  val foo = bar

  def function {
      ...
      ...
  }
}

변수 foo에 대한 문서를 작성하는 올바른 방법은 무엇입니까? 선언 직전에 주석을 추가하면 되나요? 좀 헷갈리지 않나요?

고마워요!


참조 솔루션

방법 1:

You can use Javadoc in Scala. But Scala also introduces its own documentation generator called Scaladoc. This is what is used to generate the standard language documentation.

In general, Scaladoc follows similar conventions to Javadoc but introduces new features. You can read more about Scaladoc comments style here.

방법 2:

There is no difference between java and scala comments. You can choose any documentation strategy you used in java.

(by RorsmoemEverv0id)

참조 문서

  1. Variables documentation in Scala (CC BY‑SA 2.5/3.0/4.0)

#Documentation #scala






관련 질문

터미널에서 XCode docset 문서 보기 (View XCode docset docs from terminal)

ArrayList 생성자에 대한 JDK API 문서가 올바르지 않습니다. 버그인가요? (JDK API documentation is incorrect for ArrayList constructor. Is that a bug?)

스칼라의 변수 문서 (Variables documentation in Scala)

재정의된 메서드에 대한 신속한 문서 주석? (Swift documentation comments for overriden methods?)

이미 존재하는 doxygen 문서를 상호 참조하는 방법은 무엇입니까? (How to cross-reference already existing doxygen docs?)

Spring Mock mvc 호출에 객체 속성 전달 (Pass object attrbute to spring Mock mvc call)

docfx를 사용하여 참조 문서를 생성하는 방법 (How to generate documentation with references using docfx)

get_token_user_sub() 함수는 무엇을 해야 합니까? (What is the function get_token_user_sub() supposed to do?)

UML/XMI 파일을 StarUML로 가져오는 방법은 무엇입니까? (How to import any UML/XMI files to StarUML?)

문서화 오류 Jazzy "0% 문서화되지 않은 기호가 포함된 문서 적용 범위" (documenting error Jazzy "0% documentation coverage with 0 undocumented symbols")

간단한 방법으로 javadoc을 내보내거나 구문 분석하는 도구가 있습니까? (Are there any tools to export/parse javadocs in simple way?)

JSON 스키마 기반 문서 (Documentation based on JSON Schema)







코멘트