분류 전체보기
-
2023년 05월 24일 공부 내용 정리 ( java~)국비 교육 내용 정리 2023. 5. 24. 16:53
=> 개인 노트북으로 복습!!! * 수업 내용 백업 파일 업로드 하는방법 기존 파일 마우스 우클릭 COPY -> 바탕화면 붙여넣기 -> 이클립스 실행 후 import project -> general -> 경로 선택 -> 우클릭 properties 을 해준후 resource 들어가서 경로 제대로 들어갔는지 확인 * 수업 요점 1. 언어이해 2. 웹 이해 3. 프로젝트 * 설치 ( ~Spring 까지 갈 예정) 1. 이클립스 17 ( 최신꺼 다운받으면 스프링 가서 문제 생김) - 2022-12월 윈도우 버전 다운로드 https://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/2022-12/R/eclipse-jee..
-
2023년 05월 23일 공부 내용 정리 (MYSQL,json)국비 교육 내용 정리 2023. 5. 23. 12:02
* 제이 쿼리 참고 사이트 https://releases.jquery.com/ jQuery CDN The integrity and crossorigin attributes are used for Subresource Integrity (SRI) checking. This allows browsers to ensure that resources hosted on third-party servers have not been tampered with. Use of SRI is recommended as a best-practice, whenever libr releases.jquery.com * DB (mysql) tip: 꼬였다 하면 mysql 폴더 가서 전부 삭제 후 mysql 홈페이지 가서 다운로드 후 ..
-
생성자 함수? 여러 객체가 있을 때 손쉽게 생성 할수 있는 함수Front end/javaScript 2023. 5. 22. 16:06
// 생성자 함수: 상품 객체를 생성해보자. 비슷한 객체를 여러개 만들때 유용하게 사용 가능하다. function Item(title, price){ // this = {}; this는 빈객체 this.title = title; this.price = price; this.showPrice = function(){ console.log(`가격은 ${price}원 입니다.`); } // return this; } const item1 = new Item('인형', 3000); const item2 = Item('가방', 4000); //생성자 함수는 잊지말고 new를 붙여 줘야함 const item3 = new Item('지갑', 9000); console.log(item1, item2, item3); i..
-
2023년 05월 22일 수업 내용국비 교육 내용 정리 2023. 5. 22. 09:00
* 퀴즈퀴즈 플러스 Q1) 연필 1다스는 연필 12자루 입니다. 학생 1인당 연필을 1자루씩 나누어 준다고 할때 n명의 학생 수를 입력하면, 연필의 다스 수가 구해지는 프로그램을 작성하세요 . 함수(학생수) -> 다스 수 math 객체 메소드 사용 코드: function solution(n) { let answer=Math.ceil(n/12); return answer; } console.log(solution(200)); 코드 설명: 함수는 "n"이라는 매개변수를 가지고 있습니다. 함수 내에서 "answer"라는 변수를 초기화하고, "n"을 12로 나눈 후 Math.ceil 함수를 사용하여 결과를 올림한 값을 할당합니다. Math.ceil 함수는 결과를 가장 가까운 정수로 올림합니다. 예를 들어, "n..
-
객체 (method, this). this는 현업자도 어려워함Front end/javaScript 2023. 5. 21. 18:18
//method let boy = { name: "Mike", showName: function(){ console.log(boy.name) } }; let man = boy; // boy의 별명에 man이라는 별명을 추가해준다. 즉 별명이 2개가됨 man.name ="Tom" //man의 이름을 Tom으로 바꾼다! console.log(boy.name) //TOM let boy = { name: "Mike", showName: function(){ console.log(this.name) //메소드에 객체이름을 쓰기보다는 this를 쓰는게 좋음 } }; let man = boy; // boy의 별명에 man이라는 별명을 추가해준다. 즉 별명이 2개가됨 man.sho..
-
2023년 05월 19일 수업 내용국비 교육 내용 정리 2023. 5. 19. 11:32
//JS 객체 생성 방법 //1) //2) //3) //4) ES6 Class 기반 객체 생성 방식 class chart { // 멤버 변수 // 생성자 constructor(width,height){ this.width = width; this.height = height; } // 메소드 drawline(){ console.log("draw line"); } } const mychart = new chart(100,100); mychart.drawline(); //1) 객체 리터별 방식 {} : 값을 넣어 주는 방식 제일 중요함! // JS - 프로퍼티 키(key), 프로퍼티 값(value) // java -필드(멤버변수),메서드(멤버함수) // python - 속성(attribute,변수), 메소드..