일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 파이썬
- 네트워크
- 프로그래밍언어
- 빅데이터
- 데이터분석
- 인공지능
- 딥러닝
- 네트워크보안
- 자바스크립트
- 소프트웨어공학
- 2
- Yes
- 데이터베이스
- 컴퓨터공학
- 클라우드컴퓨팅
- 소프트웨어
- 알고리즘
- 코딩
- 데이터과학
- I'm Sorry
- 웹개발
- 프로그래밍
- 컴퓨터비전
- 자료구조
- 데이터구조
- 머신러닝
- 버전관리
- 사이버보안
- 보안
- 컴퓨터과학
- Today
- Total
목록전체 글 (1715)
스택큐힙리스트
Terms & ConditionsThese terms and conditions applies to the japan_word_study app (hereby referred to as "Application") for mobile devices that was created by 김재민 (hereby referred to as "Service Provider") as a Freemium service.Upon downloading or utilizing the Application, you are automatically agreeing to the following terms. It is strongly advised that you thoroughly read and understand these ..
Privacy PolicyThis privacy policy applies to the japan_word_study app (hereby referred to as "Application") for mobile devices that was created by 김재민 (hereby referred to as "Service Provider") as a Freemium service. This service is intended for use "AS IS".Information Collection and UseThe Application collects information when you download and use it. This information may include information su..
나는 다음과 같은 함수를 사용하여 들어오는 문자열을 해시 코드로 변환하고 있습니다. 그러나 일부 값은 음수입니다. 해시 값은 음수가 되어서는 안된다고 생각합니다. 제가 무엇을 잘못하고 있는지 알려주세요. int combine = (srcadd + dstadd + sourceport + destinationport + protocol).hashCode(); System.out.println(combine); 답변 1 나는 해시 값이 음수 일 것이라고 생각하지 않습니다. 왜요? 음수 해시 코드를 가지는 것은 완전히 유효합니다. 대부분의 해시 코드 생성 방법은 자연스럽게 음수 값으로 끝나며, 이에 대한 처리를 고려해야합니다. 그러나 해시 코드를 생성하는 다른 방법을 고려해보는 것이 좋습니다. 예를 들어, in..
자바스크립트에서 값이 객체인지 어떻게 확인할 수 있나요?답변 1만약 typeof yourVariable === 'object'라면, 이것은 오브젝트이거나 null입니다. 만약 null, 배열 또는 함수를 제외하고 싶다면, 다음과 같이 하세요: if ( typeof yourVariable === 'object' && !Array.isArray(yourVariable) && yourVariable !== null ) { executeSomeCode(); } 답변 2제목: JavaScript에서 값이 객체인지 확인하는 방법 서론: JavaScript는 많은 웹 개발자들이 기본적으로 사용하는 프로그래밍 언어입니다. 이 언어를 사용하면 웹 페이지와 애플리케이션에 동적인 요소를 추가할 수 있으며, 데이터의 유형을 ..