"Null 합체 연산자"의 두 판 사이의 차이

잔글 (Jmnote님이 Null 병합 연산자 문서를 Null 합체 연산자 문서로 이동하면서 넘겨주기를 덮어썼습니다)
 
(같은 사용자의 중간 판 하나는 보이지 않습니다)
2번째 줄: 2번째 줄:
[[분류: 연산자]]
[[분류: 연산자]]
==개요==
==개요==
{{소문자}}
;null coalescing operator, Logical Defined-Or operator
;null coalescing operator, Logical Defined-Or operator
;Null 합체 연산자
;Null 합체 연산자

2023년 5월 26일 (금) 14:20 기준 최신판

1 개요[ | ]

null coalescing operator, Logical Defined-Or operator
Null 합체 연산자
??

2 Bash[ | ]

TITLE=${supplied_title:-'Default title'}

3 C#[ | ]

string pageTitle = suppliedTitle ?? "Default Title";

4 PHP[ | ]

$pageTitle = $suppliedTitle ?? 'Default Title';

5 같이 보기[ | ]

6 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}