誰かが次のコードの疑問符を説明できますか? また、INITIAL_PERMANCE はコード内の静的な最終定数ですが、シナタックスの最後の行は何と呼ばれていますか?
Synapse(AbstractCell inputSource, float permanence) {
_inputSource = inputSource;
_permanence = permanence==0.0 ?
INITIAL_PERMANENCE : (float)Math.min(1.0,permanence);
}