Data.DB.TDataSet.BofUp to Parent: TDataSetDelphiproperty Bof: Boolean read FBOF;C++__property bool Bof = {read=FBOF, nodefault};Contents [hide] 1 Properties2 Description2.1 See Also3 Code ExamplesPropertiesTypeVisibilitySourceUnitParentpropertypublicData.DB.pasData.DB.hppData.DBTDataSetDescriptionIndicates whether / the first record in the dataset is active.Test Bof (beginning of file) / to dete..
Data.DB.TDataSet.EofUp to Parent: TDataSetDelphiproperty Eof: Boolean read FEOF; {Upper case EOF conflicts with C++}C++__property bool Eof = {read=FEOF, nodefault};Contents [hide] 1 Properties2 Description2.1 See Also3 Code ExamplesPropertiesTypeVisibilitySourceUnitParentpropertypublicData.DB.pasData.DB.hppData.DBTDataSetDescriptionIndicates whether / a dataset / is positioned at the last record..
Data.DB.TDataSet.PriorUp to Parent: TDataSetDelphiprocedure Prior;C++void __fastcall Prior(void);PropertiesTypeVisibilitySourceUnitParentprocedurefunctionpublicData.DB.pasData.DB.hppData.DBTDataSetDescriptionMoves to the previous record / in the dataset.Call Prior / to move to the previous record / in the dataset, / making it the active record. Prior posts any changes / to the active record / an..
Data.DB.TDataSet.NextUp to Parent: TDataSetDelphiprocedure Next;C++void __fastcall Next(void);Contents [hide] 1 Properties2 Description2.1 See Also3 Code ExamplesPropertiesTypeVisibilitySourceUnitParentprocedurefunctionpublicData.DB.pasData.DB.hppData.DBTDataSetDescriptionMoves to the next record / in the dataset.Call Next / to move to the next record / in the dataset, / making it the active rec..
Data.DB.TDataSet.LastUp to Parent: TDataSetDelphiprocedure Last;C++void __fastcall Last(void);Contents [hide] 1 Properties2 Description2.1 See Also3 Code ExamplesPropertiesTypeVisibilitySourceUnitParentprocedurefunctionpublicData.DB.pasData.DB.hppData.DBTDataSetDescriptionMoves to the last record / in the dataset.Call Last / to make the last record / in the dataset active. If the dataset / is no..
Data.DB.TDataSet.FirstUp to Parent: TDataSetDelphiprocedure First;C++void __fastcall First(void);Contents [hide] 1 Properties2 Description2.1 See Also2.2 Code ExamplesPropertiesTypeVisibilitySourceUnitParentprocedurefunctionpublicData.DB.pasData.DB.hppData.DBTDataSetDescriptionMoves to the first record / in the dataset.Call First / to make the first record / in the dataset active. First posts an..
Data.Win.ADODB.TADOConnection.RollbackTransUp to Parent: TADOConnectionDelphiprocedure RollbackTrans;C++void __fastcall RollbackTrans(void);PropertiesTypeVisibilitySourceUnitParentprocedurefunctionpublicData.Win.ADODB.pasData.Win.ADODB.hppData.Win.ADODBTADOConnectionDescriptionRolls back / an active transaction.Call RollbackTrans / to cancel any changes / made during the current transaction / an..
Data.Win.ADODB.TADOConnection.CommitTransUp to Parent: TADOConnectionDelphiprocedure CommitTrans;C++void __fastcall CommitTrans(void);PropertiesTypeVisibilitySourceUnitParentprocedurefunctionpublicData.Win.ADODB.pasData.Win.ADODB.hppData.Win.ADODBTADOConnectionDescriptionCommits / an open transaction.Call CommitTrans / to save any changes / made during the current transaction / and to end the tr..
Data.Win.ADODB.TADOConnection.BeginTransUp to Parent: TADOConnectionDelphifunction BeginTrans: Integer;C++int __fastcall BeginTrans(void);PropertiesTypeVisibilitySourceUnitParentfunctionpublicData.Win.ADODB.pasData.Win.ADODB.hppData.Win.ADODBTADOConnectionDescriptionInitiates a new transaction / in the associated database.Call BeginTrans / to start a new transaction / in the data store / the ADO..
System.Classes.TStrings.ClearUp to Parent: TStringsDelphiprocedure Clear; virtual; abstract;C++virtual void __fastcall Clear(void) = 0 ;Contents [hide] 1 Properties2 Description2.1 See Also2.2 Code ExamplesPropertiesTypeVisibilitySourceUnitParentprocedurefunctionpublicSystem.Classes.pasSystem.Classes.hppSystem.ClassesTStringsDescriptionIntroduces an abstract (Delphi) or pure virtual (C++) method..
Data.Win.ADODB.TADOQuery.ExecSQLUp to Parent: TADOQueryDelphifunction ExecSQL: Integer; {for TQuery compatibility}C++int __fastcall ExecSQL(void);PropertiesTypeVisibilitySourceUnitParentfunctionpublicData.Win.ADODB.pasData.Win.ADODB.hppData.Win.ADODBTADOQueryDescriptionExecutes the SQL statement / for the ADO query.Call ExecSQL / to execute / the SQL statement / currently assigned to the SQL pro..
Data.DB.TDataSet.CloseUp to Parent: TDataSetDelphiprocedure Close;C++void __fastcall Close(void);Contents [hide] 1 Properties2 Description2.1 See Also2.2 Code ExamplesPropertiesTypeVisibilitySourceUnitParentprocedurefunctionpublicData.DB.pasData.DB.hppData.DBTDataSetDescriptionCloses a dataset.Call Close / to set the Active property of a dataset / to false. When Active is false, / the dataset is..
Data.Win.ADODB.TADOConnection.OpenUp to Parent: TADOConnectionDelphiprocedure Open(const UserID: WideString; const Password: WideString); overload;C++HIDESBASE void __fastcall Open(const System::WideString UserID, const System::WideString Password)/* overload */; inline void __fastcall Open(void){ Data::Db::TCustomConnection::Open(); }PropertiesTypeVisibilitySourceUnitParentprocedurefunctionpubl..
■ 개체 유형 체크 연산자개체의 실제 런타임 클래스를 확인하는데 사용 var Form1 : TForm; if Form1 is TForm then'Form1'이라는 오브젝트가 'TForm' 클래스나 그 자손 클래스의 인스턴스인 경우 'true'를 리턴. ■ 확인된 타입 캐스트 연산자procedure Button1Click(Sender : TObject); begin (Sender as TButton).Caption := 'ok'; end;'Sender'는 'TObject' 타입이므로 Caption 속성에 접근할 수 없으므로 as 연산자를 사용하여 형변환 후 Caption 속성에 접근.
[2-1] 다음 표의 빈 칸에 8개의 기본형(primitive type)을 알맞은 자리에 넣으시오. 크 기 종 류 1 byte 2 byte 4 byte 8 byte 논리형 boolean boolean 문자형 char char 정수형 bit short int long 실수형 float double [2-2] 주민등록번호를 숫자로 저장하고자 한다. 이 값을 저장하기 위해서는 어떤 자료형 (data type)을 선택해야 할까? regNo라는 이름의 변수를 선언하고 자신의 주민등록번호로 초기화 하는 한 줄의 코드를 적으시오. 작성 답안: int regNo = 1234569876543; 정답: long regNo = 1234569876543L;※ 숫자 범위가 int 범위를 넘음 [2-3] 다음의 문장에서 리터럴,..
[주제]- 기존에 구현한 블랙잭 게임을 업그레이드하기 [수정된 내용]- 각 기능별 클래스로 분할- 계정, 로그인 기능 추가- 베팅 기능 추가- 계정 정보(ID, 칩 개수)를 파일로 저장, 게임 시작 시 불러오기 [소스]■ gamePlay.javapackage blackjackGame; import java.util.ArrayList;import java.util.Scanner; public class gamePlay { private int minBetChip; private int maxBetChip; public gamePlay() {} ///// 게임 반복 루프 public gamePlay(ArrayList arrlist, String playID[]) { Scanner sc = new Scanne..
[주제]- 해시맵(HashMap)의 사용 방식 [중요]- 'TreeMap'을 사용하여 출력하면 자동으로 정렬이 됨 ※ 오름차순 정렬. '1, 2, 3, ...', '가, 나, 다, ...', 'A, B, C, ...' [소스]■ Dto.javapackage hasMapTest; public class Dto { int num; String name; public Dto(int num, String name) { this.num = num; this.name = name; } public void output() { System.out.println("num: " + num + ", name: " + name); }}Colored by Color Scriptercs ■ mainClass.javapackag..
[주제]- 배열 리스트와 연결 리스트의 사용 방식 [중요]- 배열 리스트는 'ArrayList'를, 연결 리스트는 'LinkedList'를 사용하면 손쉽게 구현 가능- 제너릭이 사용되었기 때문에 클래스 옆에 사용되는 자료형 기입 필요 ※ 소스에서는 'ArrayList'의 경우 ''로 사용, 'LinkedList'는 ''으로 사용 ※ 자료형은 클래스 이름으로 작성해야 함 [소스]import java.util.ArrayList;import java.util.Iterator;import java.util.LinkedList; public class mainClass { public static void main(String[] args) {/* * 배열 리스트 */ ArrayList arrlist = new ..
[주제]- 추상 클래스와 인터페이스 [중요]1. 추상 클래스- class 앞에 'abstract'를 붙임- 추상 메소드를 하나 이상 포함하고 있는 클래스- 반드시 상속이 필요함 2. 추상 메소드- 내용은 없고 사용할 예정이라고 선언만 한 상태- 사용하기 위해선 내부 또는 외부 클래스에서 내용에 대한 정의 필요- 메소드가 선언만 되어있거나 정의까지 되어있는 것이 섞여져 있음 3. 인터페이스- 클래스는 'implements'를 붙여서 인터페이스를 상속 받을 수 있음- 메소드가 선언만 되어있음- 반드시 상속이 필요함 ★ 각 차이점- 클래스: 메소드 선언, 정의가 전부 되어있음- 추상 클래스: 추상 메소드와 일반 메소드(정의된)- 인터페이스: 메소드가 선언만 되어있음 ※ c언어 header 파일과 흡사 [소스]..
- Total
- Today
- Yesterday
- ADODB
- 자료구조
- RA
- 작문
- 여행영어 100일의 기적
- 일기
- wfd
- 교육센터
- 문법
- SysUtils
- 응용
- 독해
- 왕초보 영어회화 100일의 기적
- Reference
- 알고리즘
- 영어
- Delphi
- 정렬
- 설명
- 계산기
- 대상
- tdataset
- 스택
- System
- java
- Pte
- 말하기
- SWT
- VCL
- 상황
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |