Use "null" in a sentence

1. In Ada, the null statement serves as a NOP.

에이다에서 null 문은 NOP 역할을 한다.

2. New keywords initially get a null Quality Score, designated by '—' in the table.

새 키워드는 처음에 빈 품질평가점수 값인 '—'로 표에 표시됩니다.

3. DLLs are located in high memory (above 0x01000000) and so have addresses containing no null bytes, so this method can remove null bytes (or other disallowed characters) from the overwritten return address.

동적 연결 라이브러리 DLL은 고위 메모리 (0x01000000 이상)에 저장되며 따라서 무효 바이트가 없는 주소를 가지므로, 이 방법은 무효 바이트 (또는 다른 허용 안되는 문자)를 덮어씌어진 복귀 주소에서 제거할 수 있다.

4. Method and apparatus for channel access via null data packet frame in wireless lan system

무선랜 시스템에서 널 데이터 패킷 프레임을 이용하는 채널 액세스 방법 및 장치

5. Programs routinely use null pointers to represent conditions such as the end of a list of unknown length or the failure to perform some action; this use of null pointers can be compared to nullable types and to the Nothing value in an option type.

프로그램들은 일상적으로 알려지지 않은 길이를 가진 리스트의 끝이나 특정한 행동 수행 실패 같은 조건들을 표현하기 위해 널 포인터를 사용한다; 널 포인터들의 이러한 사용은 Nullabe 타입들, 옵션 타입에서의 Nothing 값과 비교될 수 있다.

6. Examples include: Buffer overflow Cross-site scripting Directory traversal Null byte injection SQL injection Uncontrolled format string "CWE-20: Improper Input Validation".

예를 들면 다음과 같다: 버퍼 오버플로 사이트 간 스크립팅 디렉토리 순회 공격 널 바이트 삽입 SQL 삽입 포맷 스트링 버그 “CWE-20: Improper Input Validation”. 《Common Weakness Enumeration》.

7. In Java, access to a null reference triggers a NullPointerException (NPE), which can be caught by error handling code, but the preferred practice is to ensure that such exceptions never occur.

Java에서, 널 참조에 대한 접근은 NullPointerException (NPE)을 초래하는데, 이것은 오류 처리 코드에 의해 잡힐 수 있지만 선호되는 것은 이러한 예외들이 절대 일어나지 않게 하는 것이다. .NET에서, 널 참조에 대한 접근은 NullReferenceException가 던져지는 결과를 초래한다.

8. Since executables are mostly based at address 0x00400000 and x86 is a Little Endian architecture, the last byte of the return address must be a null, which terminates the buffer copy and nothing is written beyond that.

실행 코드는 주소 0x00400000에 기반하고, x86은 리틀 엔디안 구조이므로 귀환 주소의 최후 바이트는 반드시 무효값이 되고, 이것이 버퍼 복사를 마감하며 그 이후에는 아무것도 씌지 않는다.

9. There are occasions when dereferencing the pointer to address zero is intentional and well-defined; for example, BIOS code written in C for 16-bit real-mode x86 devices may write the IDT at physical address 0 of the machine by dereferencing a null pointer for writing.

의도적이고 잘 정의된 널을 역참조할 때 여러 경우들 또한 존재한다는 점을 주의하라; 예를 들면 16비트 리얼 모드 x86 디바이스에서 C로 짜여진 BIOS 코드는 머신의 물리 주소 0에 쓰기 위한 용도로 NULL 포인터를 역참조함으로써 IDT를 쓴다.