전체 글
- 중복 메서드(overloading) 2020.06.23
- 배열 기본 속성 2020.06.20
- input과 button 이어서 사용 2020.06.19
중복 메서드(overloading)
2020. 6. 23. 14:53
배열 기본 속성
2020. 6. 20. 23:19
int[] arrAtt1 = {10, 20, 30, 40, 50, 60};
int[] arrAtt2 = null;
int[] arrAtt3 = null;
System.out.println("arrAtt1.length : " + arrAtt1.length); // 배열 길이 출력
System.out.println("arrAtt1 : " + Arrays.toString(arrAtt13); // 배열 요소 출력
arrAtt3 = Arrays.Copy(arrAtt1, arrAtt1.lenhth); // 배열 요소 복사
********** 배열 요소를 복사할 때는 배열요소의 값을 복사하는 것이지 배열 요소의 주소를 복사하는 것이 아니다!
arrAtt1의 값을 arrAtt3에 복사를 했으면 arrAtt1의 값은 arrAtt3의 메모리 주소 어딘가에 자리 잡아 arrAtt1의 값을 가진다.
'JAVA > JAVA 이론' 카테고리의 다른 글
입력과 출력 (0) | 2020.06.29 |
---|---|
중복 메서드(overloading) (0) | 2020.06.23 |
input과 button 이어서 사용
2020. 6. 19. 01:17
<input type="text" id="replytext" class="form-control" name="replytext" placeholder="내용을 입력하세요" />
<span class="input-group-btn">
<button type="button" class="replyWriteBtn btn btn-success">등록</button>
</span>
span으로 인해 input과 button 이 붙어서 출력할 수 있다.
'JAVA > spring' 카테고리의 다른 글
<a href ="#"> a 태그 파란색 및 밑줄 없애기 (0) | 2020.06.18 |
---|---|
<button> 버튼에 링크걸기 (0) | 2020.06.18 |
게시글을 작성(board insert)할 때 바로 bno를 가져오지 않는 이슈 (0) | 2020.06.15 |
로그인 issue (0) | 2020.06.15 |
댓글 table에 foreign key 추가 (0) | 2020.06.15 |