일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- class
- 사용법
- Gradle
- pagination
- bootstrap
- 2차원 객체배열
- CKEditor4
- 클래스
- Xcode
- guard
- Java
- 제어문
- PHP
- switch-case
- amazon
- DatePicker
- EC2
- SWiFT
- 객체
- 전의 의존성
- CodeIgniter
- Spring
- 함수
- jQuery
- 옵셔널
- AWS
- programmers
- 자료불러오기
- 상속
- 차이점
- Today
- Total
목록전체 글 (81)
not bad 한 개발
문제 : https://programmers.co.kr/learn/courses/30/lessons/87389 코딩테스트 연습 - 나머지가 1이 되는 수 찾기 자연수 n이 매개변수로 주어집니다. n을 x로 나눈 나머지가 1이 되도록 하는 가장 작은 자연수 x를 return 하도록 solution 함수를 완성해주세요. 답이 항상 존재함은 증명될 수 있습니다. 제한사항 입 programmers.co.kr 알고리즘 공부는 처음이어서 모르는 부분이 많지만 앞으로 조금씩 하다 보면 어느 순간 실력이 좋아질 날이 올 거라고 믿습니다. github : https://github.com/delight-HK3/programmers_study/tree/main/programmers GitHub - delight-HK3/p..
(W3School의 PHP 튜토리얼을 사용했습니다.) https://www.w3schools.com/php/php_oop_inheritance.asp PHP OOP Inheritance W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 상속(extends) 상속은 클래스를 다른 클래스에서도 사용이 가능하게 만든 기능입니다, 키워드는 이고 사용법은 상속받을 클래스 뒤에 를 작..
(W3School의 PHP 튜토리얼을 사용했습니다.) https://www.w3schools.com/php/php_oop_destructor.asp PHP OOP Destructor W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 소멸자(destruct) 클래스를 선언하고 소멸자(destruct)를 사용하면 객체의 사용을 마치면 소멸자로 넘어가고 객체가 소멸되거나 스크립트..
(W3School의 PHP 튜토리얼을 사용했습니다.) https://www.w3schools.com/php/php_oop_constructor.asp PHP OOP Constructor W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 생성자(construct) 클래스를 선언하고 생성자(construct)를 사용하면 객체가 생성되면 객체의 속성을 초기화시킬 수 있습니다, 다..
개인 프로젝트를 진행 하던 중 12시가 지나면 메인 화면이 변하는 기능이 있으면 어떨까 라고 생각하여 만들게 되었습니다. 하지만 만들고 보니 화면 뿐만 아니라 다른 부분도 시간이 지나면 다르게 할 수 도 있겠다는 생각을 했습니다. github : https://github.com/delight-HK3/Time_change GitHub - delight-HK3/Time_change: After 12 o'clock the css class changes. After 12 o'clock the css class changes. Contribute to delight-HK3/Time_change development by creating an account on GitHub. github.com (jQuery파..