babel-plugin-私人下划线 使用符号使_classMembers为“私有” 安装 yarn add --dev babel-plugin-private-underscores 例 输入值 class Foo { constructor ( ) { this . _method ( ) ; } _method ( ) { // ... } } 输出量 let _method = Symbol ( '_method' ) ; class Foo { constructor ( ) { this [ _method ] ( ) ; }