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

잔글 (Jmnote님이 Null 합체 연산자 문서를 Null 병합 연산자 문서로 이동했습니다)
1번째 줄: 1번째 줄:
[[분류: null]]
[[분류: 연산자]]
==개요==
==개요==
;null coalescing operator, Logical Defined-Or operator
;null coalescing operator, Logical Defined-Or operator
31번째 줄: 33번째 줄:
==참고==
==참고==
* {{영어위키백과|Null coalescing operator}}
* {{영어위키백과|Null coalescing operator}}
[[분류: null]]
[[분류: 연산자]]

2023년 5월 24일 (수) 01:13 판

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 }}