1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

プライベート関数とは

Posted at

#プライベート関数とは

  • スクリプトファイルに次々と関数を宣言していくと、エディタのプルダウンに多数の関数名が列挙されていき見づらくなってしまう。
  • 表示させたくない関数は、関数名の最後にアンダースコアを付与することでプルダウンに表示されなくなる。
  • ただし、プロジェクト内からの呼び出しは引き続き可能。
構文.gs
function 関数名_() {
    //処理
}

#エディタで実際の挙動を確認してみる

##プライベート関数を使わなかった場合
image.png

##プライベート関数を使う場合
image.png

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?