목록자바공부 (18)
ITGenerations
import java.util.*; public class MyVector implements List { Object[] data = null; //객체를 담기 위한 객체배열 선언 int capacity = 0; // 용량 int size = 0; // 크기 public MyVector(int capacity){ if(capacity 0) setCapacity(minCapacity); } public boolean add(Object obj){ //새로운 객체를 저장하기 전에 저장할 공간을 확보한다. ensureCapacity(size+1); data[size++] = obj; return true; } public Object get(int index){ if(index=size) throw new ..
1. 1~100 합 public class onetohundred { public static void main(String[] args) { final int num=100; System.out.println((num*(num+1))/2); } } 결과값5050 2. 1~100 곱import java.math.BigInteger; public class multiflex1to100 { public static void main(String[] args) { BigInteger big = new BigInteger("1"); for(int i=1; i
프론트엔드html -> css-> js-> j쿼리-> servlet 백엔드java -> jsp -> spring -> ajax
static 메소드 -> 클래스 메소드non-static 메소드 -> 인스턴스 메소드
블라인드에서 누가 자바 개발자 면접 봐야하는데 공부할 키워드 좀 던져달라고 하니까----JVMGCStringBuffer & String BuilderSynchronizedOOPDependency InjectionMVCAOPProcess & Thread 자바 외tcp/ip 원리 동작방식db 트랜잭션 레벨별 차이점http/https 차이 동작방식 java concurrent 정도? 자바 개발자라고 해서 자바만 물어보지는 않을껄요? 웹 개발 관련 기초보안, 스프링 jpa등 인기 프레임워크 동작원리, 디비, 네트워크등 관련 지식도 준비해 가시는게 좋을 것 같아요~ 제 개인적인 생각으로는 웹개발자 면접이 엄청 딥하게 한 분야를 물어본다기보다는 이것저것 약간 깊이있게 물어보는 느낌이거든요 Fork and join,..