일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ftp download
- flutter 완벽 가이드
- db connect
- 정규식 문자치환
- ftp연동
- 플러터
- php
- flutter 앱 만들기
- page navigation
- php 문자치환
- flutter getting started
- Review
- Flutter 설치
- flutter 환경설정
- android function
- AppStore
- ftp upload
- 검색구현
- StoreKit
- Swift
- 크기 리사이즈
- php 게시판
- 문자치환
- flutter 설치하기
- flutter 총정리
- regexp
- php ftp upload
- SKStoreReviewController
- php ftp download
- flutter 실행하기
- Today
- Total
목록전체 글 (52)
AppleTree iOS
package console.app.exinterface; public interface InterfacOneDay { public String name=""; public String address=""; public int age=0; //interface 는 자체가 추상(abstract)이고 //interface 로 선언된 메소드는 몸체를 가질수없다. //interface 로 선언된 메소드는 무조건 추상메소드다. //class 가 interface 상속을 받으면 반드시 //interface 메소드 몸체를 구현해야한다 (오버라이딩) //abstract class 가 interface 을 상속 받으면 //interface 메소드 오버라이딩을 다할 필요는 없다. //abstract class, inter..
package console.app.object.ex; import java.util.HashMap; public class ExExample { public String getName() { return name; } public String getAddress() { return address; } public int getAge() { return age; } //private 은 현재 클래스에서만 사용할수 있습니다. //현재클래스 객체 이외에서는 사용할수없습니다. private String name; private String address; private int age; public ExExample(){ } public ExExample(String name,String address,int ..
package console.app.object.AnotherClass; import console.app.object.AddressList; public class ClassOne { public static void main(String[] args) { //클래스는 자기 뿐만 아니라 다른 클래스도 객체화 할수 있다. ClassTwo two= new ClassTwo(); two.Print(); AddressList addr=new AddressList(); //주소,나이,이름을 //AddressList 클래스 에서 값을 입력하고
package console.app.object; public final class ObjectOnrDay { /*extends 는 클래스를 상속받는 예약어입니다 * implements는 interface를 상속받는 예약어입니다. */ public static void main(String[] args) { //1차원 배열이고 11개를 만들었습니다. //배열은 index 로 가는 0시작합니다. /*int array[] = new int[11]; //array.length는 배열의 길이를 나타냅니다. for(int i=0;i