Pytania oznaczone «ternary-operator»

104
Skrótowy operator trójskładnikowy Javascript

Wiem, że w php 5.3 zamiast używać tej redundantnej składni operatora trójskładnikowego: startingNum = startingNum ? startingNum : 1 ... możemy użyć skróconej składni dla naszych operatorów trójskładnikowych tam, gdzie ma to zastosowanie: startingNum = startingNum ?: 1 Wiem o operatorze...

85
?: ?? Operatory zamiast IF | ELSE

public string Source { get { /* if ( Source == null ){ return string . Empty; } else { return Source; } */ return Source ?? string.Empty; } set { /* if ( Source == null ) { Source = string . Empty; } else { if ( Source == value ) { Source = Source; } else { Source = value;...