ๆญฏ์ฒ˜๋ฆฌ.PDF

Size: px
Start display at page:

Download "ๆญฏ์ฒ˜๋ฆฌ.PDF"

Transcription

1 E06 (Exception)

2 1 (Report) : { $I- } { I/O } Assign(InFile, InputName); Reset(InFile); { $I+ } { I/O } if IOResult <> 0 then { }; (Exception) 2

3 2 (Settling State) Post OnValidate BeforePost Post Settling State AfterPost Settling State, OnValidate BeforePost AfterPost settling state 3

4 Settling State OnValidate Raises an exception BeforePost Post AfterPost Settling State (BeforePost, Post, AfterPost) settling state ( ) 4

5 finally finally <statement>; <statement>; finally <statement>; <statement>; finally finally finally finally finally end end finally finally, finally finally, finally 5

6 (memory, graphics handles ),,, (leak),, graphics handle handle, graphics handle finally About About : procedure TfrmMainmntmAboutClick(Sender: TObject); frmabout := TfrmAboutcreate( Application ); frmaboutshowmodal; frmaboutfree;, Free (, graphics ) : procedure TfrmOrderEnMainmntmAboutClick(Sender: TObject); frmabout := TfrmAboutcreate( Application ); frmaboutshowmodal; finally frmaboutfree; 6

7 //finally, finally Assign( TextFile, TextFileName ); reset( TextFile ); readln( TextFile, buf ); finally { } CloseFile( TextFile ); {finally} finally cleanup 32 except except : < statement >; < statement >; except on ExceptionType1 do <statement(s)>; 7

8 on ExceptionType2 do {except} <statement(s)>; except : result := x/y; except on EZeroDivide do MessageDlg( Division by zero, mterror, [mbok], 0 ); on Eunderflow do MessageBeep( 0 ); MessageDlg( Numbers too small for valid results, {on Eunderflow} mterror, [mbok], 0 ); finally, except end, except (Exception) T E " " except except except, except 8

9 : function GetRatio( x, y : integer ) : Double; Result := x/y; except on EZeroDivide do Result := 00; ShowMessage( Cannot divide by zero ); {EZeroDivide} on EUnderFlow do Result := 00; ShowMessage( Difference is too great ); {EUnderFlow} on EMathError do Result := 00; ShowMessage( General math error ); {EMathError} {except} {procedure} y 0 ( ) math Project Browser : 9

10 Zero Dvide UnderFlow MathError 2 (math error), except EMathError 2 Exception 10

11 4 Propagation Propagating ' ' call stack Application call stack propagation Application GetRatio OutOfMemory, 5 Raise raise Raise 2 raise, propagation raise 0, propagation Raise propagation function GetAverage( Sum : integer; NumItems : word ) : Double; result := sum / NumItems; except 11

12 on EDivByZero do result := 00; // raise; {EDivByZero} {except} // Raise Simulation, EdivByZero, : raise EDivByZerocreate( 0 ); Raise raise 6 finally except finally except : function GetAverageFromFile( FileName : string ) : Double; var inputfile : Text; buf : string; sum, numitems : integer; sum := 0; numitems := 0; assignfile( inputfile, FileName ); reset( inputfile ); 12

13 while ( not eof( inputfile ) ) do readln( inputfile, buf ); sum := StrToInt( buf ); inc( numitems ); result := sum / numitems; except on EDivByZero do result := 00; raise; {EDivByZero} {except} finally CloseFile( inputfile ); {finally} numitems 0, 00 propagation finally finally 7 71 Exception : type EInvalidBalance = class( Exception ); 13

14 Raise EInvalidBalancecreate(! ); 72 Instance : except on E : EInvalidBalance do ShowMessage( Error message: + Emessage );, E scoping 14

15 propagation, out of scope 73 (Silent Exception) (silent exception) propagation EAbort EAbort : raise EAbortcreate( Invisible message ); Abort EAbort EAbort Abort : if not customerisvalidbalance( -50 ) then Abort; 15

16 8 Application Application propagation Application Application HandleException Application propagation HandleException ShowException ShowException HandleException OnException Application OnException Application Object Inspector,, 2 TObject Sender E Application : procedure TfrmAppExcepCustomExceptionHandler( Sender : TObject; E : Exception ); if E is EInvalidBalance then ShowMessage( 'Handling Invalid Balance exception' ) else applicationshowexception( E ); procedure TfrmAppExcepFormCreate(Sender: TObject); applicationonexception := CustomExceptionHandler; 16

17 (ShowException ) 17

18 9 91 EDatabaseError EDa tabaseerror EDatabaseError EDatabaseError EDatabaseError Cancel : repeat // Cancel tblconntestactive:= True; // tblconntest Break; // except on EDatabaseError do // OK if MessageDlg('Could not open table', mterror, [mbok, mbcancel], 0) <> mrok then raise; // Cancel // except until False; EDatabaseError BDE DBEngine 92 OnPostError, OnEditError, OnDeleteError OnPostError, OnEditError, OnDeleteError TTable, TQuerie, TStoredProcedure : 18

19 procedure TfrmAppExceptblNamePostError(DataSet: TDataSet; E: EDatabaseError; var Action: TDataAction); : DataSet TDataSet E EDatabaseError Action TDataAction 3 : dafail, daabort, dare Action dafail EDatabaseError daabort EDatabaseError dare Action dafail daabort 93 EDBEngineError EDBEngineError EDatabaseError Errors ErrorCount BDE, BDE 3 BDE 3 Errors ErrorCount BDE Errors TDBError TDBError : ErrorCode Category BDE ( ) ErrorCode 19

20 SubCode NativeError Message 0, BDE BDE 94 BDE BDE DCU Delphi5 DOC BDEINT BDE BDE 16 : ERRBASE_NONE = 0; { No error } ERRBASE_SYSTEM = $2100; { System related (Fatal Error) } ERRBASE_NOTFOUND = $2200; { Object of interest Not Found } ERRBASE_DATACORRUPT = $2300; { Physical Data Corruption } offset : ERRCODE_SYSFILEOPEN = 1; { Cannot open a system file } ERRCODE_SYSFILEIO = 2; { I/O error on a system file } ERRCODE_SYSCORRUPT = 3; { Data structure corruption } ERRCODE_NOCONFIGFILE = 4; { Cannot find config file } offset : DBIERR_SYSFILEOPEN = (ERRBASE_SYSTEM + ERRCODE_SYSFILEOPEN); DBIERR_SYSFILEIO = (ERRBASE_SYSTEM + ERRCODE_SYSFILEIO); DBIERR_SYSCORRUPT = (ERRBASE_SYSTEM + ERRCODE_SYSCORRUPT); DBIERR_NOCONFIGFILE = (ERRBASE_SYSTEM + ERRCODE_NOCONFIGFILE); 20

21 DBIERR_ BDE BDE BDE BDE : tblconnectactive := true; except on E : EDBEngineError do MessageDlg( 'Can''t find table', mterror, [mbok], 0 );? BDE : tblconnectactive := true; except on E : EDBEngineError do case Eerrors[0]errorCode of DBIERR_OSENOPATH : MessageDlg( 'Invalid Path', mterror, [mbok], 0 ); DBIERR_OSENOENT : MessageDlg( 'File not Found', mterror, [mbok], 0 ); else raise; //case BDE BDE BDE 21

(Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory :

(Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory : #2 (RAD STUDIO) In www.devgear.co.kr 2016.05.18 (Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory : hskim@embarcadero.kr 3! 1 - RAD, 2-3 - 4

More information

ๆญฏMDI.PDF

ๆญฏMDI.PDF E08 MDI SDI(Single Document Interface) MDI(Multiple Document Interface) MDI (Client Window) (Child) MDI 1 MDI MDI MDI - File New Other Projects MDI Application - MDI - OK [ 1] MDI MDI MDI MDI Child MDI

More information

ๆญฏ9์žฅ.PDF

ๆญฏ9์žฅ.PDF 9 Hello!! C printf() scanf() getchar() putchar() gets() puts() fopen() fclose() fprintf() fscant() fgetc() fputs() fgets() gputs() fread() fwrite() fseek() ftell() I/O 2 (stream) C (text stream) : `/n'

More information

1

1 1 1....6 1.1...6 2. Java Architecture...7 2.1 2SDK(Software Development Kit)...8 2.2 JRE(Java Runtime Environment)...9 2.3 (Java Virtual Machine, JVM)...10 2.4 JVM...11 2.5 (runtime)jvm...12 2.5.1 2.5.2

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ @ Lesson 3 if, if else, if else if, switch case for, while, do while break, continue : System.in, args, JOptionPane for (,, ) @ vs. logic data method variable Data Data Flow (Type), ( ) @ Member field

More information

OCaml

OCaml OCaml 2009.. (khheo@ropas.snu.ac.kr) 1 ML 2 ML OCaml INRIA, France SML Bell lab. & Princeton, USA nml SNU/KAIST, KOREA 3 4 (let) (* ex1.ml *) let a = 10 let add x y = x + y (* ex2.ml *) let sumofsquare

More information

12-file.key

12-file.key 11 (String).. java.lang.stringbuffer. s String s = "abcd"; s = s + "e"; a b c d e a b c d e ,., "910359,, " "910359" " " " " (token) (token),, (delimiter). java.util.stringtokenizer String s = "910359,,

More information

03แ„Œแ…กแ†ผ.แ„‰แ…ณแ„แ…ขแ†จ.key

03แ„Œแ…กแ†ผ.แ„‰แ…ณแ„แ…ขแ†จ.key ---------------- DATA STRUCTURES USING C ---------------- 03CHAPTER 1 ? (stack): (LIFO:Last-In First-Out) 2 : top : ( index -1 ),,, 3 : ( ) ( ) -> ->. ->.... 4 Stack ADT : (LIFO) : init():. is_empty():

More information

Javascript.pages

Javascript.pages JQuery jquery part1 JavaScript : e-mail:leseraphina@naver.com http://www.webhard.co.kr I.? 2 ......,,. : : html5 ; ; .

More information

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770> i ii iii iv v vi 1 2 3 4 ๊ฐ€์ƒ๋Œ€ํ•™ ์‹œ์Šคํ…œ์˜ ๊ตญ๋‚ด์™ธ ํ˜„ํ™ฉ ์กฐ์‚ฌ ๊ฐ€์ƒ๋Œ€ํ•™ ํ”Œ๋žซํผ ๊ฐœ๋ฐœ ์ด์ƒ์ ์ธ ๊ฐ€์ƒ๋Œ€ํ•™์‹œ์Šคํ…œ์˜ ๋ฏธ๋ž˜์ƒ ์ œ์•ˆ 5 ์›น-๊ธฐ๋ฐ˜ ๊ฐ€์ƒ๋Œ€ํ•™ ์‹œ์Šคํ…œ ์ „ํ†ต์ ์ธ ๊ต์ˆ˜ ๋ฐฉ๋ฒ• ์‹œ๊ฐ„/๊ณต๊ฐ„ ์ œ์•ฝ์„ ๊ทน๋ณตํ•œ ํ•™์Šต๋™๊ธฐ ๋ถ€์—ฌ ๊ต์ˆ˜์˜ ์ผ๋ฐฉ์ ์ธ ๋‚ด์šฉ์ „๋‹ฌ ๊ต์ˆ˜์™€ ํ•™์ƒ๊ฐ„์˜ ์ƒํ˜ธ์ž‘์šฉ ๋™๋ฃŒ ํ•™์ƒ๋“ค ๊ฐ„์˜ ์ƒํ˜ธ์ž‘์šฉ ๊ฐ€์ƒ๋Œ€ํ•™ ์šด์˜ ๊ณต์ง€์‚ฌํ•ญ,๊ฐ•์˜๋ก ์ž๋ฃŒ์‹ค, ๋ฉ”๋ชจ ์งˆ์˜์‘๋‹ต,

More information

02 C h a p t e r Java

02 C h a p t e r Java 02 C h a p t e r Java Bioinformatics in J a va,, 2 1,,,, C++, Python, (Java),,, (http://wwwbiojavaorg),, 13, 3D GUI,,, (Java programming language) (Sun Microsystems) 1995 1990 (green project) TV 22 CHAPTER

More information

SIGPLwinterschool2012

SIGPLwinterschool2012 1994 1992 2001 2008 2002 Semantics Engineering with PLT Redex Matthias Felleisen, Robert Bruce Findler and Matthew Flatt 2009 Text David A. Schmidt EXPRESSION E ::= N ( E1 O E2 ) OPERATOR O ::=

More information

01-OOPConcepts(2).PDF

01-OOPConcepts(2).PDF Object-Oriented Programming Concepts Tel: 02-824-5768 E-mail: hhcho@selabsoongsilackr? OOP (Object) (Encapsulation) (Message) (Class) (Inheritance) (Polymorphism) (Abstract Class) (Interface) 2 1 + = (Dependency)

More information

PL10

PL10 assert(p!=null); *p = 10; assert(0

More information

untitled

untitled Push... 2 Push... 4 Push... 5 Push... 13 Push... 15 1 FORCS Co., LTD A Leader of Enterprise e-business Solution Push (Daemon ), Push Push Observer. Push., Observer. Session. Thread Thread. Observer ID.

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ @ Lesson 2... ( ). ( ). @ vs. logic data method variable behavior attribute method field Flow (Type), ( ) member @ () : C program Method A ( ) Method B ( ) Method C () program : Java, C++, C# data @ Program

More information

1 ๊ฐœ์ • ์‚ฌ์œ  ํ™˜๊ฒฝ์˜ํ–ฅํ‰๊ฐ€์ œ๋„๊ฐ€ ํ™˜๊ฒฝ์ •์ฑ…๊ธฐ๋ณธ๋ฒ• ์— ๋”ฐ๋ฅธ ์‚ฌ์ „ํ™˜๊ฒฝ์„ฑ๊ฒ€ํ† ์™€, ํ™˜๊ฒฝ์˜ํ–ฅํ‰๊ฐ€๋ฒ• ์— ๋”ฐ๋ฅธ ํ™˜๊ฒฝ์˜ํ–ฅํ‰๊ฐ€๋กœ ์ด์›ํ™” -์œ ์‚ฌ ๋ชฉ์ ์˜ ํ‰๊ฐ€์ œ๋„๊ฐ€ ๊ฐ๊ฐ ๋‹ค๋ฅธ ๋ฒ•๋ฅ ์— ๊ทœ์ •๋˜์–ด ํ‰๊ฐ€์ ˆ์ฐจ๊ฐ€ ๋ณต์žกํ•˜๊ณ  ํ™˜๊ฒฝํ‰๊ฐ€์˜ ์ผ๊ด€์„ฑ ์—ฐ๊ณ„์„ฑ์ด ๋ถ€์กฑ *์‚ฌ์ „ํ™˜๊ฒฝ๊ฒฝ์„ฑ๊ฒ€ํ† ๋Š” ํ–‰์ •๊ณ„ํš๊ณผ ๊ฐœ๋ฐœ์‚ฌ์—…๊ณ„ํš ์ˆ˜๋ฆฝ

1 ๊ฐœ์ • ์‚ฌ์œ  ํ™˜๊ฒฝ์˜ํ–ฅํ‰๊ฐ€์ œ๋„๊ฐ€ ํ™˜๊ฒฝ์ •์ฑ…๊ธฐ๋ณธ๋ฒ• ์— ๋”ฐ๋ฅธ ์‚ฌ์ „ํ™˜๊ฒฝ์„ฑ๊ฒ€ํ† ์™€, ํ™˜๊ฒฝ์˜ํ–ฅํ‰๊ฐ€๋ฒ• ์— ๋”ฐ๋ฅธ ํ™˜๊ฒฝ์˜ํ–ฅํ‰๊ฐ€๋กœ ์ด์›ํ™” -์œ ์‚ฌ ๋ชฉ์ ์˜ ํ‰๊ฐ€์ œ๋„๊ฐ€ ๊ฐ๊ฐ ๋‹ค๋ฅธ ๋ฒ•๋ฅ ์— ๊ทœ์ •๋˜์–ด ํ‰๊ฐ€์ ˆ์ฐจ๊ฐ€ ๋ณต์žกํ•˜๊ณ  ํ™˜๊ฒฝํ‰๊ฐ€์˜ ์ผ๊ด€์„ฑ ์—ฐ๊ณ„์„ฑ์ด ๋ถ€์กฑ *์‚ฌ์ „ํ™˜๊ฒฝ๊ฒฝ์„ฑ๊ฒ€ํ† ๋Š” ํ–‰์ •๊ณ„ํš๊ณผ ๊ฐœ๋ฐœ์‚ฌ์—…๊ณ„ํš ์ˆ˜๋ฆฝ ํ™˜๊ฒฝ์˜ํ–ฅํ‰๊ฐ€๋ฒ• ์ „๋ถ€๊ฐœ์ •๋ฒ•๋ฅ ์•ˆ ์„ค๋ช…์ž๋ฃŒ 2012. 7. ์ž ์—ฐ ๋ณด ์ „ ๊ตญ 1 ๊ฐœ์ • ์‚ฌ์œ  ํ™˜๊ฒฝ์˜ํ–ฅํ‰๊ฐ€์ œ๋„๊ฐ€ ํ™˜๊ฒฝ์ •์ฑ…๊ธฐ๋ณธ๋ฒ• ์— ๋”ฐ๋ฅธ ์‚ฌ์ „ํ™˜๊ฒฝ์„ฑ๊ฒ€ํ† ์™€, ํ™˜๊ฒฝ์˜ํ–ฅํ‰๊ฐ€๋ฒ• ์— ๋”ฐ๋ฅธ ํ™˜๊ฒฝ์˜ํ–ฅํ‰๊ฐ€๋กœ ์ด์›ํ™” -์œ ์‚ฌ ๋ชฉ์ ์˜ ํ‰๊ฐ€์ œ๋„๊ฐ€ ๊ฐ๊ฐ ๋‹ค๋ฅธ ๋ฒ•๋ฅ ์— ๊ทœ์ •๋˜์–ด ํ‰๊ฐ€์ ˆ์ฐจ๊ฐ€ ๋ณต์žกํ•˜๊ณ  ํ™˜๊ฒฝํ‰๊ฐ€์˜ ์ผ๊ด€์„ฑ ์—ฐ๊ณ„์„ฑ์ด ๋ถ€์กฑ *์‚ฌ์ „ํ™˜๊ฒฝ๊ฒฝ์„ฑ๊ฒ€ํ† ๋Š” ํ–‰์ •๊ณ„ํš๊ณผ ๊ฐœ๋ฐœ์‚ฌ์—…๊ณ„ํš ์ˆ˜๋ฆฝ๋‹จ๊ณ„์—์„œ,ํ™˜๊ฒฝ์˜ํ–ฅํ‰๊ฐ€๋Š”

More information

Modern Javascript

Modern Javascript ES6 - Arrow Function Class Template String Destructuring Default, Rest, Spread let, const for..of Promises Module System Map, Set * Generator * Symbol * * https://babeljs.io/ Babel is a JavaScript compiler.

More information

Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras

Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Crash Unity SDK... Log & Crash Search. - Unity3D v4.0 ios

More information

13์ฃผ-14์ฃผproc.PDF

13์ฃผ-14์ฃผproc.PDF 12 : Pro*C/C++ 1 2 Embeded SQL 3 PRO *C 31 C/C++ PRO *C NOT! NOT AND && AND OR OR EQUAL == = SQL,,, Embeded SQL SQL 32 Pro*C C SQL Pro*C C, C Pro*C, C C 321, C char : char[n] : n int, short, long : float

More information

๋ชฉ์ฐจ BUG offline replicator ์—์„œ์œ ํšจํ•˜์ง€์•Š์€๋กœ๊ทธ๋ฅผ์ฝ์„๊ฒฝ์šฐ๋น„์ •์ƒ์ข…๋ฃŒํ• ์ˆ˜์žˆ๋‹ค... 3 BUG ๊ฐ partition ์ด์„œ๋กœ๋‹ค๋ฅธ tablespace ๋ฅผ๊ฐ€์ง€๊ณ , column type ์ด CLOB ์ด๋ฉฐ, ํ•ด๋‹น table ์„ truncate

๋ชฉ์ฐจ BUG offline replicator ์—์„œ์œ ํšจํ•˜์ง€์•Š์€๋กœ๊ทธ๋ฅผ์ฝ์„๊ฒฝ์šฐ๋น„์ •์ƒ์ข…๋ฃŒํ• ์ˆ˜์žˆ๋‹ค... 3 BUG ๊ฐ partition ์ด์„œ๋กœ๋‹ค๋ฅธ tablespace ๋ฅผ๊ฐ€์ง€๊ณ , column type ์ด CLOB ์ด๋ฉฐ, ํ•ด๋‹น table ์„ truncate ALTIBASE HDB 6.1.1.5.6 Patch Notes ๋ชฉ์ฐจ BUG-39240 offline replicator ์—์„œ์œ ํšจํ•˜์ง€์•Š์€๋กœ๊ทธ๋ฅผ์ฝ์„๊ฒฝ์šฐ๋น„์ •์ƒ์ข…๋ฃŒํ• ์ˆ˜์žˆ๋‹ค... 3 BUG-41443 ๊ฐ partition ์ด์„œ๋กœ๋‹ค๋ฅธ tablespace ๋ฅผ๊ฐ€์ง€๊ณ , column type ์ด CLOB ์ด๋ฉฐ, ํ•ด๋‹น table ์„ truncate ํ•œ๋’ค, hash partition

More information

NoSQL

NoSQL MongoDB Daum Communications NoSQL Using Java Java VM, GC Low Scalability Using C Write speed Auto Sharding High Scalability Using Erlang Read/Update MapReduce R/U MR Cassandra Good Very Good MongoDB Good

More information

๋ชฉ์ฐจ BUG DEQUEUE ์˜ WAIT TIME ์ด 1 ์ดˆ๋ฏธ๋งŒ์ธ๊ฒฝ์šฐ, ์„ค์ •ํ•œ์‹œ๊ฐ„๋งŒํผ๋Œ€๊ธฐํ•˜์ง€์•Š๋Š”๋ฌธ์ œ๊ฐ€์žˆ์Šต๋‹ˆ๋‹ค... 3 BUG [qp-select-pvo] group by ํ‘œํ˜„์‹์—์žˆ๋Š”์ปฌ๋Ÿผ์„์ฐธ์กฐํ•˜๋Š”์ง‘ํ•ฉ์—ฐ์‚ฐ์ด์กด์žฌํ•˜์ง€์•Š์œผ๋ฉด๊ฒฐ๊ด๊ฐ’์˜ค๋ฅ˜๊ฐ€๋ฐœ์ƒํ• ์ˆ˜์žˆ์Šต๋‹ˆ๋‹ค... 4

๋ชฉ์ฐจ BUG DEQUEUE ์˜ WAIT TIME ์ด 1 ์ดˆ๋ฏธ๋งŒ์ธ๊ฒฝ์šฐ, ์„ค์ •ํ•œ์‹œ๊ฐ„๋งŒํผ๋Œ€๊ธฐํ•˜์ง€์•Š๋Š”๋ฌธ์ œ๊ฐ€์žˆ์Šต๋‹ˆ๋‹ค... 3 BUG [qp-select-pvo] group by ํ‘œํ˜„์‹์—์žˆ๋Š”์ปฌ๋Ÿผ์„์ฐธ์กฐํ•˜๋Š”์ง‘ํ•ฉ์—ฐ์‚ฐ์ด์กด์žฌํ•˜์ง€์•Š์œผ๋ฉด๊ฒฐ๊ด๊ฐ’์˜ค๋ฅ˜๊ฐ€๋ฐœ์ƒํ• ์ˆ˜์žˆ์Šต๋‹ˆ๋‹ค... 4 ALTIBASE HDB 6.5.1.5.10 Patch Notes ๋ชฉ์ฐจ BUG-46183 DEQUEUE ์˜ WAIT TIME ์ด 1 ์ดˆ๋ฏธ๋งŒ์ธ๊ฒฝ์šฐ, ์„ค์ •ํ•œ์‹œ๊ฐ„๋งŒํผ๋Œ€๊ธฐํ•˜์ง€์•Š๋Š”๋ฌธ์ œ๊ฐ€์žˆ์Šต๋‹ˆ๋‹ค... 3 BUG-46249 [qp-select-pvo] group by ํ‘œํ˜„์‹์—์žˆ๋Š”์ปฌ๋Ÿผ์„์ฐธ์กฐํ•˜๋Š”์ง‘ํ•ฉ์—ฐ์‚ฐ์ด์กด์žฌํ•˜์ง€์•Š์œผ๋ฉด๊ฒฐ๊ด๊ฐ’์˜ค๋ฅ˜๊ฐ€๋ฐœ์ƒํ• ์ˆ˜์žˆ์Šต๋‹ˆ๋‹ค... 4 BUG-46266 [sm]

More information

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET 135-080 679-4 13 02-3430-1200 1 2 11 2 12 2 2 8 21 Connection 8 22 UniSQLConnection 8 23 8 24 / / 9 3 UniSQL 11 31 OID 11 311 11 312 14 313 16 314 17 32 SET 19 321 20 322 23 323 24 33 GLO 26 331 GLO 26

More information

้ฎ๋šฎโ”ฐ๏งŽ๋ถพ๋ฑ??๏งกโ‘ค๋‚ฏ

้ฎ๋šฎโ”ฐ๏งŽ๋ถพ๋ฑ??๏งกโ‘ค๋‚ฏ 5 1 2 3 4 5 6 7 8 9 1 2 3 6 7 1 2 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 OK 46 47 OK 48 OK 49 50 51 OK OK 52 53 54 55 56 57 58 59 60 61

More information

๋ชฉ์ฐจ BUG ๋ฌธ๋ฒ•์—๋งž์ง€์•Š๋Š”์งˆ์˜๋ฌธ์ˆ˜ํ–‰์‹œ, ์—๋Ÿฌ๋ฉ”์‹œ์ง€์—์งˆ์˜๋ฌธ์˜์ผ๋ถ€๋งŒ๋ณด์—ฌ์ฃผ๋Š”๋ฌธ์ œ๋ฅผ์ˆ˜์ •ํ•ฉ๋‹ˆ๋‹ค... 3 BUG ROUND, TRUNC ํ•จ์ˆ˜์—์„œ DATE ํฌ๋งท IW ๋ฅผ์ถ”๊ฐ€์ง€์›ํ•ฉ๋‹ˆ๋‹ค... 5 BUG ROLLUP/CUBE ์ ˆ์„ํฌํ•จํ•˜๋Š”์งˆ์˜๋Š” SUBQUE

๋ชฉ์ฐจ BUG ๋ฌธ๋ฒ•์—๋งž์ง€์•Š๋Š”์งˆ์˜๋ฌธ์ˆ˜ํ–‰์‹œ, ์—๋Ÿฌ๋ฉ”์‹œ์ง€์—์งˆ์˜๋ฌธ์˜์ผ๋ถ€๋งŒ๋ณด์—ฌ์ฃผ๋Š”๋ฌธ์ œ๋ฅผ์ˆ˜์ •ํ•ฉ๋‹ˆ๋‹ค... 3 BUG ROUND, TRUNC ํ•จ์ˆ˜์—์„œ DATE ํฌ๋งท IW ๋ฅผ์ถ”๊ฐ€์ง€์›ํ•ฉ๋‹ˆ๋‹ค... 5 BUG ROLLUP/CUBE ์ ˆ์„ํฌํ•จํ•˜๋Š”์งˆ์˜๋Š” SUBQUE ALTIBASE HDB 6.3.1.10.1 Patch Notes ๋ชฉ์ฐจ BUG-45710 ๋ฌธ๋ฒ•์—๋งž์ง€์•Š๋Š”์งˆ์˜๋ฌธ์ˆ˜ํ–‰์‹œ, ์—๋Ÿฌ๋ฉ”์‹œ์ง€์—์งˆ์˜๋ฌธ์˜์ผ๋ถ€๋งŒ๋ณด์—ฌ์ฃผ๋Š”๋ฌธ์ œ๋ฅผ์ˆ˜์ •ํ•ฉ๋‹ˆ๋‹ค... 3 BUG-45730 ROUND, TRUNC ํ•จ์ˆ˜์—์„œ DATE ํฌ๋งท IW ๋ฅผ์ถ”๊ฐ€์ง€์›ํ•ฉ๋‹ˆ๋‹ค... 5 BUG-45760 ROLLUP/CUBE ์ ˆ์„ํฌํ•จํ•˜๋Š”์งˆ์˜๋Š” SUBQUERY REMOVAL ๋ณ€ํ™˜์„์ˆ˜ํ–‰ํ•˜์ง€์•Š๋„๋ก์ˆ˜์ •ํ•ฉ๋‹ˆ๋‹ค....

More information

แ„’แ…ฑแ†ฏแ„‰แ…ฆแ„†แ…ตแ„‚แ…ก3 ver0.4

แ„’แ…ฑแ†ฏแ„‰แ…ฆแ„†แ…ตแ„‚แ…ก3 ver0.4 andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$

More information

PRO1_02E [์ฝ๊ธฐ ์ „์šฉ]

PRO1_02E [์ฝ๊ธฐ ์ „์šฉ] Siemens AG 1999 All rights reserved File: PRO1_02E1 Information and 2 STEP 7 3 4 5 6 STEP 7 7 / 8 9 10 S7 11 IS7 12 STEP 7 13 STEP 7 14 15 : 16 : S7 17 : S7 18 : CPU 19 1 OB1 FB21 I10 I11 Q40 Siemens AG

More information

Semantic Consistency in Information Exchange

Semantic Consistency in Information Exchange ์ œ 6 ์žฅ์ œ์–ด (Control) 6.1 ๊ตฌ์กฐ์ ํ”„๋กœ๊ทธ๋ž˜๋ฐ (Structured Programming) 6.2 ์˜ˆ์™ธ (Exceptions) Reading Chap. 7 ์ˆ™๋Œ€์ฐฝ๋ณ‘๋ชจ 1 6.1 ๊ตฌ์กฐ์ ํ”„๋กœ๊ทธ๋ž˜๋ฐ ์ˆ™๋Œ€์ฐฝ๋ณ‘๋ชจ 2 Fortran ์ œ์–ด๊ตฌ์กฐ 10 IF (X.GT. 0.000001) GO TO 20 11 X = -X IF (X.LT. 0.000001) GO TO

More information

Mobile Service > IAP > Android SDK [ ] IAP SDK TOAST SDK. IAP SDK. Android Studio IDE Android SDK Version (API Level 10). Name Reference V

Mobile Service > IAP > Android SDK [ ] IAP SDK TOAST SDK. IAP SDK. Android Studio IDE Android SDK Version (API Level 10). Name Reference V Mobile Service > IAP > Android SDK IAP SDK TOAST SDK. IAP SDK. Android Studio IDE 2.3.3 Android SDK Version 2.3.3 (API Level 10). Name Reference Version License okhttp http://square.github.io/okhttp/ 1.5.4

More information

๊ฐ•์˜10

๊ฐ•์˜10 Computer Programming gdb and awk 12 th Lecture ๊น€ํ˜„์ฒ ์ปดํ“จํ„ฐ๊ณตํ•™๋ถ€์„œ์šธ๋Œ€ํ•™๊ต ์ˆœ์„œ C Compiler and Linker ๋ณด์ถฉ Static vs Shared Libraries ( ๊ณ„์† ) gdb awk Q&A Shared vs Static Libraries ( ๊ณ„์† ) Advantage of Using Libraries Reduced

More information

EMBARCADERO TECHNOLOGIES (Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory :

EMBARCADERO TECHNOLOGIES (Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory : #1 RAD (RAD STUDIO) In www.devgear.co.kr 2016.05.16 EMBARCADERO TECHNOLOGIES (Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory : hskim@embarcadero.kr

More information

4. #include <stdio.h> #include <stdlib.h> int main() { functiona(); } void functiona() { printf("hihi\n"); } warning: conflicting types for functiona

4. #include <stdio.h> #include <stdlib.h> int main() { functiona(); } void functiona() { printf(hihi\n); } warning: conflicting types for functiona ์ด๋ฆ„ : ํ•™๋ฒˆ : A. True or False: ๊ฐ๊ฐํ•ญ๋ชฉ๋งˆ๋‹ค True ์ธ์ง€ False ์ธ์ง€์ ์œผ์„ธ์š”. 1. (Python:) randint ํ•จ์ˆ˜๋ฅผ์‚ฌ์šฉํ•˜๋ ค๋ฉด, random ๋ชจ๋“ˆ์„ import ํ•ด์•ผํ•œ๋‹ค. 2. (Python:) '' (single quote) ๋Š”ํ•œ๊ธ€์ž๋ฅผํ‘œํ˜„ํ• ๋•Œ, (double quote) ๋Š”๋ฌธ์ž์—ด์„ํ‘œํ˜„ํ• ๋•Œ์‚ฌ์šฉํ•œ๋‹ค. B. ๋‹ค์Œ์—๋Ÿฌ๋ฅผ์ˆ˜์ •ํ•˜๋Š”๋ฐฉ๋ฒ•์„์ ์œผ์„ธ์š”.

More information

C++-ยฟรยบยฎร‡ร˜ยผยณ10ร€รฅ

C++-ยฟรยบยฎร‡ร˜ยผยณ10ร€รฅ C C++. (preprocessor directives), C C++ C/C++... C++, C. C++ C. C C++. C,, C++, C++., C++.,.. #define #elif #else #error #if #itdef #ifndef #include #line #pragma #undef #.,.,. #include #include

More information

Microsoft PowerPoint - PL_03-04.pptx

Microsoft PowerPoint - PL_03-04.pptx Copyright, 2011 H. Y. Kwak, Jeju National University. Kwak, Ho-Young http://cybertec.cheju.ac.kr Contents 1 ํ”„๋กœ๊ทธ๋ž˜๋ฐ ์–ธ์–ด ์†Œ๊ฐœ 2 ์–ธ์–ด์˜ ๋ณ€์ฒœ 3 ํ”„๋กœ๊ทธ๋ž˜๋ฐ ์–ธ์–ด ์„ค๊ณ„ 4 ํ”„๋กœ๊ทธ๋ž˜๋ฐ ์–ธ์–ด์˜ ๊ตฌ๋ฌธ๊ณผ ๊ตฌํ˜„ ๊ธฐ๋ฒ• 5 6 7 ์ปดํŒŒ์ผ๋Ÿฌ ๊ฐœ์š” ๋ณ€์ˆ˜, ๋ฐ”์ธ๋”ฉ, ์‹ ๋ฐ ์ œ์–ด๋ฌธ ์ž๋ฃŒํ˜• 8

More information

์Šฌ๋ผ์ด๋“œ 1

์Šฌ๋ผ์ด๋“œ 1 Pairwise Tool & Pairwise Test NuSRS 200511305 ๊น€์„ฑ๊ทœ 200511306 ๊น€์„ฑํ›ˆ 200614164 ๊น€ํšจ์„ 200611124 ์œ ์„ฑ๋ฐฐ 200518036 ๊ณก์ง„ํ™” 2 PICT Pairwise Tool - PICT Microsoft ์˜ Command-line ๊ธฐ๋ฐ˜์˜ Free Software www.pairwise.org ์—์„œ๋‹ค์šด๋กœ๋“œํ›„์„ค์น˜

More information

Polly_with_Serverless_HOL_hyouk

Polly_with_Serverless_HOL_hyouk { } "Version":"2012-10-17", "Statement":[ { "Effect":"Allow", "Action":[ "polly:synthesizespeech", "dynamodb:query", "dynamodb:scan", "dynamodb:putitem", "dynamodb:updateitem", "sns:publish", "s3:putobject",

More information

6์ฃผ์ฐจ.key

6์ฃผ์ฐจ.key 6, Process concept A program in execution Program code PCB (process control block) Program counter, registers, etc. Stack Heap Data section => global variable Process in memory Process state New Running

More information

ํ•™์Šต๋ชฉํ‘œ ํ•จ์ˆ˜ํ”„๋กœ์‹œ์ €, ์„œ๋ธŒํ”„๋กœ์‹œ์ €์˜์˜๋ฏธ๋ฅผ์•ˆ๋‹ค. ๋งค๊ฐœ๋ณ€์ˆ˜์ „๋‹ฌ๋ฐฉ์‹์„ํ•™์Šตํ•œ๋‹ค. ํ•จ์ˆ˜๋ฅผ์ด์šฉํ•œํ”„๋กœ๊ทธ๋ž˜๋ฐํ•œ๋‹ค. 2

ํ•™์Šต๋ชฉํ‘œ ํ•จ์ˆ˜ํ”„๋กœ์‹œ์ €, ์„œ๋ธŒํ”„๋กœ์‹œ์ €์˜์˜๋ฏธ๋ฅผ์•ˆ๋‹ค. ๋งค๊ฐœ๋ณ€์ˆ˜์ „๋‹ฌ๋ฐฉ์‹์„ํ•™์Šตํ•œ๋‹ค. ํ•จ์ˆ˜๋ฅผ์ด์šฉํ•œํ”„๋กœ๊ทธ๋ž˜๋ฐํ•œ๋‹ค. 2 ํ•™์Šต๋ชฉํ‘œ ํ•จ์ˆ˜ํ”„๋กœ์‹œ์ €, ์„œ๋ธŒํ”„๋กœ์‹œ์ €์˜์˜๋ฏธ๋ฅผ์•ˆ๋‹ค. ๋งค๊ฐœ๋ณ€์ˆ˜์ „๋‹ฌ๋ฐฉ์‹์„ํ•™์Šตํ•œ๋‹ค. ํ•จ์ˆ˜๋ฅผ์ด์šฉํ•œํ”„๋กœ๊ทธ๋ž˜๋ฐํ•œ๋‹ค. 2 6.1 ํ•จ์ˆ˜ํ”„๋กœ์‹œ์ € 6.2 ์„œ๋ธŒํ”„๋กœ์‹œ์ € 6.3 ๋งค๊ฐœ๋ณ€์ˆ˜์˜์ „๋‹ฌ๋ฐฉ์‹ 6.4 ํ•จ์ˆ˜๋ฅผ์ด์šฉํ•œํ”„๋กœ๊ทธ๋ž˜๋ฐ 3 ํ”„๋กœ์‹œ์ € (Procedure) ํ”„๋กœ์‹œ์ € (Procedure) ๋ž€๋ฌด์—‡์ธ๊ฐ€? ๋…ผ๋ฆฌ์ ์œผ๋กœ๋ฌถ์—ฌ์žˆ๋Š”ํ•˜๋‚˜์˜์ฒ˜๋ฆฌ๋‹จ์œ„ ๋‚ด์žฅํ”„๋กœ์‹œ์ € ์ด๋ฒคํŠธํ”„๋กœ์‹œ์ €, ์†์„ฑํ”„๋กœ์‹œ์ €, ๋ฉ”์„œ๋“œ, ๋น„์ฃผ์–ผ๋ฒ ์ด์ง๋‚ด์žฅํ•จ์ˆ˜๋“ฑ

More information

UML

UML Introduction to UML Team. 5 2014/03/14 ์›์Šคํƒ€ 200611494 ๊น€์„ฑ์› 200810047 ํ—ˆํƒœ๊ฒฝ 200811466 - Index - 1. UML์ด๋ž€? - 3 2. UML Diagram - 4 3. UML ํ‘œ๊ธฐ๋ฒ• - 17 4. GRAPPLE์— ๋”ฐ๋ฅธ UML ์ž‘์„ฑ ๊ณผ์ • - 21 5. UML Tool Star UML - 32 6. ์ฐธ์กฐ๋ฌธํ—Œ

More information

USER GUIDE

USER GUIDE Solution Package Volume II DATABASE MIGRATION 2010. 1. 9. U.Tu System 1 U.Tu System SeeMAGMA SYSTEM ์ฐจ ๋ก€ 1. INPUT & OUTPUT DATABASE LAYOUT...2 2. IPO ์ค‘ VB DATA DEFINE ์ž๋™์ž‘์„ฑ...4 3. DATABASE UNLOAD...6 4.

More information

Microsoft PowerPoint - 04-UDP Programming.ppt

Microsoft PowerPoint - 04-UDP Programming.ppt Chapter 4. UDP Dongwon Jeong djeong@kunsan.ac.kr http://ist.kunsan.ac.kr/ Dept. of Informatics & Statistics ๋ชฉ์ฐจ UDP 1 1 UDP ๊ฐœ๋… ์ž๋ฐ” UDP ํ”„๋กœ๊ทธ๋žจ์ž‘์„ฑ ํด๋ผ์ด์–ธํŠธ์™€์„œ๋ฒ„๋ชจ๋‘ DatagramSocket ํด๋ž˜์Šค๋กœ์ƒ์„ฑ ์ƒํ˜ธ๊ฐ„ํ†ต์‹ ์€ DatagramPacket ํด๋ž˜์Šค๋ฅผ์ด์šฉํ•˜์—ฌ

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING

More information

ๆญฏ์—‘์…€๋ชจ๋ธ๋ง

ๆญฏ์—‘์…€๋ชจ๋ธ๋ง I II II III III I VBA Understanding Excel VBA - 'VB & VBA In a Nutshell' by Paul Lomax, October,1998 To enter code: Tools/Macro/visual basic editor At editor: Insert/Module Type code, then compile by:

More information

PCServerMgmt7

PCServerMgmt7 Web Windows NT/2000 Server DP&NM Lab 1 Contents 2 Windows NT Service Provider Management Application Web UI 3 . PC,, Client/Server Network 4 (1),,, PC Mainframe PC Backbone Server TCP/IP DCS PLC Network

More information

ch09

ch09 9 Chapter CHAPTER GOALS B I G J A V A 436 CHAPTER CONTENTS 9.1 436 Syntax 9.1 441 Syntax 9.2 442 Common Error 9.1 442 9.2 443 Syntax 9.3 445 Advanced Topic 9.1 445 9.3 446 9.4 448 Syntax 9.4 454 Advanced

More information

MAX+plus II Getting Started - ๋ฌด์ž‘์ •๋”ฐ๋ผํ•˜๊ธฐ

MAX+plus II Getting Started - ๋ฌด์ž‘์ •๋”ฐ๋ผํ•˜๊ธฐ ๋ฌด์ž‘์ • ๋”ฐ๋ผํ•˜๊ธฐ 2001 10 4 / Version 20-2 0 MAX+plus II Digital, Schematic Capture MAX+plus II, IC, CPLD FPGA (Logic) ALTERA PLD FLEX10K Series EPF10K10QC208-4 MAX+plus II Project, Schematic, Design Compilation,

More information

Ext JS ร€ยฅยพร–ร‡รƒยธยฎร„ร‰ร€รŒยผร‡ยฐยณยนรŸ-ยณยนร€รฅ.PDF

Ext JS ร€ยฅยพร–ร‡รƒยธยฎร„ร‰ร€รŒยผร‡ยฐยณยนรŸ-ยณยนร€รฅ.PDF CHAPTER 2 (interaction) Ext JS., HTML, onready, MessageBox get.. Ext JS HTML CSS Ext JS.1. Ext JS. Ext.Msg: : Ext Ext.get: DOM 22 CHAPTER 2 (config). Ext JS.... var test = new TestFunction( 'three', 'fixed',

More information

5.แ„‰แ…ณแ„แ…ขแ†จ(แ„€แ…กแ†ผแ„‹แ…ดแ„Œแ…กแ„…แ…ญ).key

5.แ„‰แ…ณแ„แ…ขแ†จ(แ„€แ…กแ†ผแ„‹แ…ดแ„Œแ…กแ„…แ…ญ).key CHP 5: https://www.youtube.com/watch?v=ns-r91557ds ? (stack): (LIFO:Last-In First-Out):. D C B C B C B C B (element) C (top) B (bottom) (DT) : n element : create() ::=. is_empty(s) ::=. is_full(s) ::=.

More information

thesis

thesis ( Design and Implementation of a Generalized Management Information Repository Service for Network and System Management ) ssp@nile nile.postech.ac..ac.kr DPE Lab. 1997 12 16 GMIRS GMIRS GMIRS prototype

More information

T100MD+

T100MD+ User s Manual 100% ) ( x b a a + 1 RX+ TX+ DTR GND TX+ RX+ DTR GND RX+ TX+ DTR GND DSR RX+ TX+ DTR GND DSR [ DCE TYPE ] [ DCE TYPE ] RS232 Format Baud 1 T100MD+

More information

K&R2 Reference Manual ๋ฒˆ์—ญ๋ณธ

K&R2 Reference Manual ๋ฒˆ์—ญ๋ณธ typewriter structunion struct union if-else if if else if if else if if if if else else ; auto register static extern typedef void char short int long float double signed unsigned const volatile { } struct

More information

?ํ„ธๆฌ๋ฌต

?ํ„ธๆฌ๋ฌต CONTENTS 2000 2000 006 007 017 027 037 047 057 067 077 2012 2013 087 097 107 117 127 135 145 155 165 6 about COMPANY Case 01 8 9 Case 01 10 11 Case 01 12 13 Case 01 14 15 Case 01 16 about COMPANY Case

More information

Eclipse ์™€ Firefox ๋ฅผ์ด์šฉํ•œ Javascript ๊ฐœ๋ฐœ ๋ฐœํ‘œ์ž : ๋ฌธ๊ฒฝ๋Œ€ 11 ๋…„ 10 ์›” 26 ์ผ์ˆ˜์š”์ผ

Eclipse ์™€ Firefox ๋ฅผ์ด์šฉํ•œ Javascript ๊ฐœ๋ฐœ ๋ฐœํ‘œ์ž : ๋ฌธ๊ฒฝ๋Œ€ 11 ๋…„ 10 ์›” 26 ์ผ์ˆ˜์š”์ผ Eclipse ์™€ Firefox ๋ฅผ์ด์šฉํ•œ Javascript ๊ฐœ๋ฐœ ๋ฐœํ‘œ์ž : ๋ฌธ๊ฒฝ๋Œ€ Introduce Me!!! Job Jeju National University Student Ubuntu Korean Jeju Community Owner E-Mail: ned3y2k@hanmail.net Blog: http://ned3y2k.wo.tc Facebook: http://www.facebook.com/gyeongdae

More information

Deok9_Exploit Technique

Deok9_Exploit Technique Exploit Technique CodeEngn Co-Administrator!!! and Team Sur3x5F Member Nick : Deok9 E-mail : DDeok9@gmail.com HomePage : http://deok9.sur3x5f.org Twitter :@DDeok9 > 1. Shell Code 2. Security

More information

Cํ”„๋กœ-3์žฅc03้€žํ’š

Cํ”„๋กœ-3์žฅc03้€žํ’š C h a p t e r 03 C++ 3 1 9 4 3 break continue 2 110 if if else if else switch 1 if if if 3 1 1 if 2 2 3 if if 1 2 111 01 #include 02 using namespace std; 03 void main( ) 04 { 05 int x; 06 07

More information

Java

Java Java http://cafedaumnet/pway Chapter 1 1 public static String format4(int targetnum){ String strnum = new String(IntegertoString(targetNum)); StringBuffer resultstr = new StringBuffer(); for(int i = strnumlength();

More information

EMBARCADERO TECHNOLOGIES (Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory :

EMBARCADERO TECHNOLOGIES (Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory : #3 (RAD STUDIO) In www.devgear.co.kr 2016.05.23 EMBARCADERO TECHNOLOGIES (Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory : hskim@embarcadero.kr

More information

๊ธฐ๋ณธ์ž๋ฃŒํ˜•๋งŒ์œผ๋กœ์ด๋ฃจ์–ด์ง„์ธ์ž๋ฅผ๋ฐ›์•„์„œํ•จ์ˆ˜๋ฅผ๊ฒฐ๊ณผ๊ฐ’์œผ๋กœ๋ฐ˜ํ™˜ํ•˜๋Š”๊ณ ์ฐจํ•จ์ˆ˜ ๊ธฐ๋ณธ์ž๋ฃŒํ˜•๊ณผํ•จ์ˆ˜๋ฅผ์ธ์ž์™€๊ฒฐ๊ณผ๊ฐ’์—๋ชจ๋‘์ด์šฉํ•˜๋Š”๊ณ ์ฐจํ•จ์ˆ˜ ๋‹ค์Œ์ ˆ์—์„œ๋Š”์—ฌ๋Ÿฌ๊ฐ€์ง€์˜ˆ๋ฅผํ†ตํ•ด์„œ๊ณ ์ฐจํ•จ์ˆ˜๊ฐ€์–ด๋–ค๊ฒฝ์šฐ์—์œ ์šฉํ•œ์ง€๋ฅผ์„ค๋ช…ํ•œ๋‹ค. 2 ๊ณ ์ฐจํ•จ์ˆ˜์˜ ์˜ˆ??์žฅ์—์„œ๋Œ€์ƒ์ฒด๋งŒ๋ฐ”๋€Œ๊ณ ์ค‘๊ฐ„๊ณผ์ •์€๋™์ผํ•œ๊ณ„์‚ฐ์ด๋ฐ˜๋ณต๋ ๋•Œํ•จ์ˆ˜๋ฅผ์ด์šฉํ•˜๋ฉด์ „์ฒด์—ฐ์‚ฐ์‹์„๊ฐ„ ๋‹จ

๊ธฐ๋ณธ์ž๋ฃŒํ˜•๋งŒ์œผ๋กœ์ด๋ฃจ์–ด์ง„์ธ์ž๋ฅผ๋ฐ›์•„์„œํ•จ์ˆ˜๋ฅผ๊ฒฐ๊ณผ๊ฐ’์œผ๋กœ๋ฐ˜ํ™˜ํ•˜๋Š”๊ณ ์ฐจํ•จ์ˆ˜ ๊ธฐ๋ณธ์ž๋ฃŒํ˜•๊ณผํ•จ์ˆ˜๋ฅผ์ธ์ž์™€๊ฒฐ๊ณผ๊ฐ’์—๋ชจ๋‘์ด์šฉํ•˜๋Š”๊ณ ์ฐจํ•จ์ˆ˜ ๋‹ค์Œ์ ˆ์—์„œ๋Š”์—ฌ๋Ÿฌ๊ฐ€์ง€์˜ˆ๋ฅผํ†ตํ•ด์„œ๊ณ ์ฐจํ•จ์ˆ˜๊ฐ€์–ด๋–ค๊ฒฝ์šฐ์—์œ ์šฉํ•œ์ง€๋ฅผ์„ค๋ช…ํ•œ๋‹ค. 2 ๊ณ ์ฐจํ•จ์ˆ˜์˜ ์˜ˆ??์žฅ์—์„œ๋Œ€์ƒ์ฒด๋งŒ๋ฐ”๋€Œ๊ณ ์ค‘๊ฐ„๊ณผ์ •์€๋™์ผํ•œ๊ณ„์‚ฐ์ด๋ฐ˜๋ณต๋ ๋•Œํ•จ์ˆ˜๋ฅผ์ด์šฉํ•˜๋ฉด์ „์ฒด์—ฐ์‚ฐ์‹์„๊ฐ„ ๋‹จ EECS-101 ์ „์ž๊ณ„์‚ฐ์ž…๋ฌธ ๊ณ ์ฐจํ•จ์ˆ˜ ๋ฐ•์„ฑ์šฐ 2008๋…„5์›” 29์ผ ์ง€๊ธˆ๊นŒ์ง€์ •์ˆ˜๋‚˜๋ถ€๋™์†Œ์ˆ˜์™€๊ฐ™์€๊ธฐ๋ณธ์ ์ธ์ž๋ฃŒํ˜•์˜์กฐํ•ฉ์„์ธ์ž๋กœ๋ฐ›๊ณ ๊ฒฐ๊ณผ๊ฐ’์œผ๋กœ๋ฐ˜ํ™˜ํ•˜๋Š” ํ•จ์ˆ˜์—๋Œ€ํ•ด์„œ๋ฐฐ์› ๋‹ค. ์ด๋ฒˆ๊ฐ•์˜์—์„œ๋Š”ํ•จ์ˆ˜์ž์ฒด๋ฅผ๋‹ค๋ฅธํ•จ์ˆ˜์˜์ธ์ž๋กœ์ด์šฉํ•˜๊ฑฐ๋‚˜๊ฒฐ๊ณผ๊ฐ’์œผ๋กœ ์ด์šฉํ•˜๋Š” ๋ฐฉ๋ฒ•์„ ๋ฐฐ์šด๋‹ค. 1 ๊ณ ์ฐจํ•จ์ˆ˜์˜ ์˜๋ฏธ ๊ณ„์‚ฐ์€๋ฌด์—‡์„์–ด๋–ป๊ฒŒ์ฒ˜๋ฆฌํ•˜์—ฌ๊ฒฐ๊ณผ๊ฐ’์„์–ป๋Š”์ง€์„ค๋ช…ํ•˜๋Š”๊ฒƒ์œผ๋กœ์ด๋ฃจ์–ด์ง„๋‹ค. ์—ฌ๊ธฐ์„œ ๋ฌด์—‡ ๊ณผ ๊ฒฐ ๊ณผ๊ฐ’ ์€๊ณ„์‚ฐ์˜๋Œ€์ƒ์ฒด๋กœ์„œ์ •์ˆ˜๋‚˜๋ถ€๋™์†Œ์ˆ˜์™€๊ฐ™์€๊ธฐ๋ณธ์ž๋ฃŒํ˜•์˜์กฐํ•ฉ์œผ๋กœํ‘œํ˜„ํ•˜๋ฉฐ,

More information

slide2

slide2 Program P ::= CL CommandList CL ::= C C ; CL Command C ::= L = E while E : CL end print L Expression E ::= N ( E + E ) L &L LefthandSide L ::= I *L Variable I ::= Numeral N ::=

More information

์˜ˆ์ œ 1.1 ( ๊ด€๊ณ„์—ฐ์‚ฐ์ž ) >> A=1:9, B=9-A A = B = >> tf = A>4 % 4 ๋ณด๋‹คํฐ A ์˜์›์†Œ๋“ค์„์ฐพ์„๊ฒฝ์šฐ tf = >> tf = (A==B) % A

์˜ˆ์ œ 1.1 ( ๊ด€๊ณ„์—ฐ์‚ฐ์ž ) >> A=1:9, B=9-A A = B = >> tf = A>4 % 4 ๋ณด๋‹คํฐ A ์˜์›์†Œ๋“ค์„์ฐพ์„๊ฒฝ์šฐ tf = >> tf = (A==B) % A ์˜ˆ์ œ 1.1 ( ๊ด€๊ณ„์—ฐ์‚ฐ์ž ) >> A=1:9, B=9-A A = 1 2 3 4 5 6 7 8 9 B = 8 7 6 5 4 3 2 1 0 >> tf = A>4 % 4 ๋ณด๋‹คํฐ A ์˜์›์†Œ๋“ค์„์ฐพ์„๊ฒฝ์šฐ tf = 0 0 0 0 1 1 1 1 1 >> tf = (A==B) % A ์˜์›์†Œ์™€ B ์˜์›์†Œ๊ฐ€๋˜‘๊ฐ™์€๊ฒฝ์šฐ๋ฅผ์ฐพ์„๋•Œ tf = 0 0 0 0 0 0 0 0 0 >> tf

More information

Week5

Week5 Week 05 Iterators, More Methods and Classes Hash, Regex, File I/O Joonhwan Lee human-computer interaction + design lab. Iterators Writing Methods Classes & Objects Hash File I/O Quiz 4 1. Iterators Array

More information

05-class.key

05-class.key 5 : 2 (method) (public) (private) (interface) 5.1 (Method), (public method) (private method) (constructor), 3 4 5.2 (client). (receiver)., System.out.println("Hello"); (client object) (receiver object)

More information

09-interface.key

09-interface.key 9 Database insert(record r): boolean find(key k): Record 1 Record getkey(): Key * Record Key Database.? Key equals(key y): boolean Database insert(record r): boolean find(key k): Record * Database OK 1

More information

DocsPin_Korean.pages

DocsPin_Korean.pages Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. ์ค€๋น„์‚ฌํ•ญ Google Drive. Google Drive.,.. - Google

More information

Tcl์˜ ๋ฌธ๋ฒ•

Tcl์˜ ๋ฌธ๋ฒ• ์›”, 01/28/2008-20:50 admin ์€ ์ƒ๋‹นํžˆ ๋‹จ์ˆœํ•˜๊ณ , ์ปค๋งจ๋“œ์˜ ์ธ์ž๋ฅผ ์ŠคํŽ˜์ด์Šค(๊ณต๋ฐฑ)๋กœ ๋‹จ๋ฝ์„ ์ง“๊ณ  ๋‚˜์—ดํ•˜๋Š” ์ •๋„์ž…๋‹ˆ๋‹ค. command arg1 arg2 arg3... ํ•œํ–‰์— ์—ฌ๋Ÿฌ๊ฐœ์˜ ์ปค๋งจ๋“œ๋ฅผ ๋‚˜์—ดํ• ๋•Œ๋Š”, ์„ธ๋ฏธ์ฝœ๋ก ( ; )์œผ๋กœ ๊ตฌ๋ถ„์„ ์ง“์Šต๋‹ˆ๋‹ค. command arg1 arg2 arg3... ; command arg1 arg2 arg3... ํ•œํ–‰์ด

More information

Cluster management software

Cluster management software ์ž๋ฐ”๋„คํŠธ์›Œํฌํ”„๋กœ๊ทธ๋ž˜๋ฐ (OCJP ๊ตญ์ œ๊ณต์ธ์ž๊ฒฉ์ทจ๋“์ค‘์‹ฌ ) ์ถฉ๋ถ๋Œ€ํ•™๊ต ์ตœ๋ฏผ ๊ธฐ๋ณธ์˜ˆ์ œ ์˜ˆ์™ธํด๋ž˜์Šค๋ฅผ์ •์˜ํ•˜๊ณ ์‚ฌ์šฉํ•˜๋Š”์˜ˆ์ œ class NewException extends Exception { public class ExceptionTest { static void methoda() throws NewException { System.out.println("NewException

More information

hlogin7

hlogin7 0x07. Return Oriented Programming ROP? , (DEP, ASLR). ROP (Return Oriented Programming) (excutable memory) rop. plt, got got overwrite RTL RTL Chain DEP, ASLR gadget Basic knowledge plt, got call function

More information

Smart Power Scope Release Informations.pages

Smart Power Scope Release Informations.pages v2.3.7 (2017.09.07) 1. Galaxy S8 2. SS100, SS200 v2.7.6 (2017.09.07) 1. SS100, SS200 v1.0.7 (2017.09.07) [SHM-SS200 Firmware] 1. UART Command v1.3.9 (2017.09.07) [SHM-SS100 Firmware] 1. UART Command SH๋ชจ๋ฐ”์ผ

More information

Microsoft PowerPoint - lecture2.ppt

Microsoft PowerPoint - lecture2.ppt Overview s & osg::referenced Class & osg::ref_ptr Template Class ๊ฐœ์š” OSG OSG::Referenced Class OSG::ref_ptr Template Class 2008๋…„์—ฌ๋ฆ„๋ฐ•๊ฒฝ์‹  2 ์Šค๋งˆํŠธํฌ์ธํ„ฐ () ๋Š” C++ class ์ด๋‹ค. syntax ์™€ semantics ์ƒ์ผ๋ฐ˜ํฌ์ธํ„ฐ์™€๊ฐ™๋‹ค. memory

More information

UI TASK & KEY EVENT

UI TASK & KEY EVENT T9 & AUTOMATA 2007. 3. 23 PLATFORM TEAM ์ •์šฉํ•™ ์ฐจ๋ก€ T9 ๊ฐœ์š” ์ƒˆ๋กœ์šด์–ธ์–ด (LDB) ์ถ”๊ฐ€ T9 ์ฃผ์š”๊ตฌ์กฐ์ฒด / ์ฃผ์š”ํ•จ์ˆ˜ Automata ๊ฐœ์š” Automata ์ฃผ์š”ํ•จ์ˆ˜ ์ถ”ํ›„์„ธ๋ฏธ๋‚˜๊ณ„ํš ์งˆ์˜์‘๋‹ต๋ฐํ† ์˜ T9 ( 2 / 30 ) T9 ๊ฐœ์š” ์ผ๋ฐ˜์ ์œผ๋กœ cat ์ด๋ผ๋Š”๋‹จ์–ด๋ฅผ์“ธ๋ ค๋ฉด... ๊ธฐ์กด๋ชจ๋“œ (multitap) 2,2,2, 2,8 ( ์ด 6๋ฒˆ์˜์ž…๋ ฅ

More information

example code are examined in this stage The low pressure pressurizer reactor trip module of the Plant Protection System was programmed as subject for

example code are examined in this stage The low pressure pressurizer reactor trip module of the Plant Protection System was programmed as subject for 2003 Development of the Software Generation Method using Model Driven Software Engineering Tool,,,,, Hoon-Seon Chang, Jae-Cheon Jung, Jae-Hack Kim Hee-Hwan Han, Do-Yeon Kim, Young-Woo Chang Wang Sik, Moon

More information

chap01_time_complexity.key

chap01_time_complexity.key 1 : (resource),,, 2 (time complexity),,, (worst-case analysis) (average-case analysis) 3 (Asymptotic) n growth rate ฮ˜-, ฮŸ- ( ) 4 : n data, n/2. int sample( int data[], int n ) { int k = n/2 ; return data[k]

More information

Making a True Business Solution ANNUAL REPORT 2013 I. I. I I II. II. II II II II II II II II II II II II II II II II II III. III III III III III III III III III III III

More information

untitled

untitled - -, (insert) (delete) - - (insert) (delete) (top ) - - (insert) (rear) (delete) (front) A A B top A B C top push(a) push(b) push(c) A B top pop() top A B D push(d) top #define MAX_STACK_SIZE 100 int

More information

chap7.key

chap7.key 1 7 C 2 7.1 C (System Calls) Unix UNIX man Section 2 C. C (Library Functions) C 1975 Dennis Ritchie ANSI C Standard Library 3 (system call). 4 C?... 5 C (text file), C. (binary file). 6 C 1. : fopen( )

More information

#......-....-E-....b61.)

#......-....-E-....b61.) 1 2 3 4 F3 5 F1 F6 F1 F2 F3 F4 TOOLS F5 F6 DESIGN F1 F1 F6 F3 F6 F1 F2 F3 F4 F4 F1 F1 F2 F1 F1 F2 F3 F1 FDD F2 USB F1 FDD F2 USB F1 SWF F2 T-CODE F2 T-CODE F2 F1 F3 F2 F1 F2 F1 F1 F1

More information

์„œ๋ก  34 2

์„œ๋ก  34 2 34 2 Journal of the Korean Society of Health Information and Health Statistics Volume 34, Number 2, 2009, pp. 165 176 165 ์ง„์€ํฌ A Study on Health related Action Rates of Dietary Guidelines and Pattern of

More information

PRO1_16E [์ฝ๊ธฐ ์ „์šฉ]

PRO1_16E [์ฝ๊ธฐ ์ „์šฉ] MPI PG 720 Siemens AG 1999 All rights reserved File: PRO1_16E1 Information and MPI 2 MPI 3 : 4 GD 5 : 6 : 7 GD 8 GD 9 GD 10 GD 11 : 12 : 13 : 14 SFC 60 SFC 61 15 NETPRO 16 SIMATIC 17 S7 18 1 MPI MPI S7-300

More information

y 0.5 9, 644 e = 10, y = ln = 3.6(%) , May. 20, 2005

y 0.5 9, 644 e = 10, y = ln = 3.6(%) , May. 20, 2005 8 116, May. 20, 2005 y 0.5 9, 644 e = 10, 000 1 9644 y = ln = 3.6(%) 0.5 10000 9 116, May. 20, 2005 y 0.5 9, 644 e = 10, 000 1 9644 y = ln = 3.6(%) 0.5 10000 1 FV r T = ln T PV 10 116, May. 20, 2005 Public

More information

์ดˆ๋ณด์ž๋ฅผ ์œ„ํ•œ C++

์ดˆ๋ณด์ž๋ฅผ ์œ„ํ•œ C++ C++. 24,,,,, C++ C++.,..,., ( ). /. ( 4 ) ( ).. C++., C++ C++. C++., 24 C++. C? C++ C C, C++ (Stroustrup) C++, C C++. C. C 24.,. C. C+ +?. X C++.. COBOL COBOL COBOL., C++. Java C# C++, C++. C++. Java C#

More information

Study on the Improvement of Management System through Analysis of golf semi- market: Focus on Physical Education Facility Act Ji-Myung Jung 1, Ju-Ho Park 2 *, & Youngdae Lee 3 1 Korea Institute of Sport

More information

ยฝร…ร‡ร‘sr_ยฑยนยนยฎร†รฎร„ยง

ยฝร…ร‡ร‘sr_ยฑยนยนยฎร†รฎร„ยง Contents 02 04 06 07 08 10 12 13 16 18 22 24 26 27 30 31 32 38 39 40 41 41 46 47 50 53 57 61 64 67 69 71 74 75 76 78 CARBON DISCLOSURE PROJECT CSR Highlights p.23 about this report p.47 p.50 http://snic.kr/49yb

More information

ยฝร…ร‡ร‘sr_ยฑยนยนยฎร†รฎร„ยง

ยฝร…ร‡ร‘sr_ยฑยนยนยฎร†รฎร„ยง Contents 02 04 06 07 08 10 12 13 16 18 22 24 26 27 30 31 32 38 39 40 41 41 46 47 50 53 57 61 64 67 69 71 74 75 76 78 CARBON DISCLOSURE PROJECT CSR Highlights p.23 about this report p.47 p.50 http://snic.kr/49yb

More information

Domino Designer Portal Development tools Rational Application Developer WebSphere Portlet Factory Workplace Designer Workplace Forms Designer

Domino Designer Portal Development tools Rational Application Developer WebSphere Portlet Factory Workplace Designer Workplace Forms Designer Domino, Portal & Workplace WPLC FTSS Domino Designer Portal Development tools Rational Application Developer WebSphere Portlet Factory Workplace Designer Workplace Forms Designer ? Lotus Notes Clients

More information

2017 ๋…„ 6 ์›”ํ•œ๊ตญ์†Œํ”„ํŠธ์›จ์–ด๊ฐ์ •ํ‰๊ฐ€ํ•™ํšŒ๋…ผ๋ฌธ์ง€์ œ 13 ๊ถŒ์ œ 1 ํ˜ธ Abstract

2017 ๋…„ 6 ์›”ํ•œ๊ตญ์†Œํ”„ํŠธ์›จ์–ด๊ฐ์ •ํ‰๊ฐ€ํ•™ํšŒ๋…ผ๋ฌธ์ง€์ œ 13 ๊ถŒ์ œ 1 ํ˜ธ Abstract 2017 ๋…„ 6 ์›”ํ•œ๊ตญ์†Œํ”„ํŠธ์›จ์–ด๊ฐ์ •ํ‰๊ฐ€ํ•™ํšŒ๋…ผ๋ฌธ์ง€์ œ 13 ๊ถŒ์ œ 1 ํ˜ธ Abstract - 31 - ์†Œ์Šค์ฝ”๋“œ์œ ์‚ฌ๋„์ธก์ •๋„๊ตฌ์˜์„ฑ๋Šฅ์—๊ด€ํ•œ๋น„๊ต์—ฐ๊ตฌ 1. ์„œ๋ก  1) Revulytics, Top 20 Countries for Software Piracy and Licence Misuse (2017), March 21, 2017. www.revulytics.com/blog/top-20-countries-software

More information

Microsoft PowerPoint - 12-Custom Classes.pptx

Microsoft PowerPoint - 12-Custom Classes.pptx Development of Fashion CAD System 12. Custom Classes Sungmin Kim SEOUL NATIONAL UNIVERSITY Topics Using Custom Classes Spline Curve ์‚ฌ์šฉํ•˜๊ธฐ TBSpline Class Introduction DXF (Drawing Exchange Format) ๋กœ์ €์žฅํ•˜๊ธฐ

More information

UI TASK & KEY EVENT

UI TASK & KEY EVENT KEY EVENT & STATE ๊ตฌํ˜„ 2007. 1. 25 PLATFORM TEAM ์ •์šฉํ•™ ์ฐจ๋ก€ Key Event HS TASK UI TASK LONG KEY STATE ๊ตฌํ˜„ ์†Œ์Šค์ฝ”๋“œ๋ฐ์‹คํ–‰ํ™”๋ฉด ์งˆ์˜์‘๋‹ต๋ฐํ† ์˜ 2 KEY EVENT - HS TASK hs_task keypad_scan_keypad hs_init keypad_pass_key_code keypad_init

More information

Microsoft PowerPoint - a10.ppt [ํ˜ธํ™˜ ๋ชจ๋“œ]

Microsoft PowerPoint - a10.ppt [ํ˜ธํ™˜ ๋ชจ๋“œ] Structure Chapter 10: Structures t and Macros Structure ๊ด€๋ จ๋œ๋ณ€์ˆ˜๋“ค์˜๊ทธ๋ฃน์œผ๋กœ์ด๋ฃจ์–ด์ง„์ž๋ฃŒ๊ตฌ์กฐ template, pattern field structure๋ฅผ๊ตฌ์„ฑํ•˜๋Š”๋ณ€์ˆ˜ (cf) C์–ธ์–ด์˜ struct ํ”„๋กœ๊ทธ๋žจ์˜ structure ์ ‘๊ทผ entire structure ๋˜๋Š” individual fields Structure๋Š”

More information

Index Process Specification Data Dictionary

Index Process Specification Data Dictionary Index Process Specification Data Dictionary File Card Tag T-Money Control I n p u t/o u t p u t Card Tag save D e s c r i p t i o n ๋ฆฌ๋”๊ธฐ์œ„์น˜, In/Out/No_Out. File Name customer file write/ company file write

More information

DDX4038BT DDX4038BTM DDX4038 DDX4038M 2010 Kenwood Corporation All Rights Reserved. LVT A (MN)

DDX4038BT DDX4038BTM DDX4038 DDX4038M 2010 Kenwood Corporation All Rights Reserved. LVT A (MN) DDX4038BT DDX4038BTM DDX4038 DDX4038M 2010 Kenwood Corporation All Rights Reserved. LVT2201-002A (MN) 2 3 [ ] CLASS 1 LASER PRODUCT 4 1 2 Language AV Input R-CAM Interrupt Panel Color Preout

More information

PRO1_04E [์ฝ๊ธฐ ์ „์šฉ]

PRO1_04E [์ฝ๊ธฐ ์ „์šฉ] Siemens AG 1999 All rights reserved File: PRO1_04E1 Information and S7-300 2 S7-400 3 EPROM / 4 5 6 HW Config 7 8 9 CPU 10 CPU : 11 CPU : 12 CPU : 13 CPU : / 14 CPU : 15 CPU : / 16 HW 17 HW PG 18 SIMATIC

More information

0.1-6

0.1-6 HP-19037 1 EMP400 2 3 POWER EMP400 4 5 6 7 ALARM CN2 8 9 CN3 CN1 10 24V DC CN4 TB1 11 12 Copyright ORIENTAL MOTOR CO., LTD. 2001 2 1 2 3 4 5 1.1...1-2 1.2... 1-2 2.1... 2-2 2.2... 2-4 3.1... 3-2 3.2...

More information

Microsoft PowerPoint - 09-Object Oriented Programming-3.pptx

Microsoft PowerPoint - 09-Object Oriented Programming-3.pptx Development of Fashion CAD System 9. Object Oriented Programming-3 Sungmin Kim SEOUL NATIONAL UNIVERSITY Introduction Topics Object Oriented Programming (OOP) ์ •์˜ ๋ณต์ˆ˜์˜ pattern object ๋กœ ์ด๋ฃจ์–ด์ง€๋Š” ์ƒˆ๋กœ์šด class Pattern

More information

ๆญฏJavaExceptionHandling.PDF

ๆญฏJavaExceptionHandling.PDF (2001 3 ) from Yongwoo s Park Java Exception Handling Programming from Yongwoo s Park 1 Java Exception Handling Programming from Yongwoo s Park 2 1 4 11 4 4 try/catch 5 try/catch/finally 9 11 12 13 13

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ @ Lesson 4 (Object) (Class) (Instance) (Method) (Constructor) Memory 1 UML 1 @ & 1 (Real World) (Software World) @ &.. () () @ & 2 (Real World) (Software World) OOA/ Modeling Abstraction Instantiation

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ Verilog: Finite State Machines CSED311 Lab03 Joonsung Kim, joonsung90@postech.ac.kr Finite State Machines Digital system design ์‹œ๊ฐ„์—๋ฐฐ์šด๊ฒƒ๊ณผ๊ฐ™์Šต๋‹ˆ๋‹ค. Moore / Mealy machines Verilog ๋ฅผ์ด์šฉํ•ด์„œ์–ด๋–ป๊ฒŒ๊ตฌํ˜„ํ• ๊นŒ? 2 Finite State

More information

No Slide Title

No Slide Title Copyright, 2001 Multimedia Lab., CH 3. COM object (In-process server) Eun-sung Lee twoss@mmlab.net Multimedia Lab. Dept. of Electrical and Computer Eng. University of Seoul Seoul, Korea 0. Contents 1.

More information

Microsoft PowerPoint - ch03ysk2012.ppt [ํ˜ธํ™˜ ๋ชจ๋“œ]

Microsoft PowerPoint - ch03ysk2012.ppt [ํ˜ธํ™˜ ๋ชจ๋“œ] ์ „์žํšŒ๋กœ Ch3 iode Models and Circuits ๊น€์˜์„ ์ถฉ๋ถ๋Œ€ํ•™๊ต์ „์ž์ •๋ณด๋Œ€ํ•™ 2012.3.1 Email: kimys@cbu.ac.kr k Ch3-1 Ch3 iode Models and Circuits 3.1 Ideal iode 3.2 PN Junction as a iode 3.4 Large Signal and Small-Signal Operation

More information

SK IoT IoT SK IoT onem2m OIC IoT onem2m LG IoT SK IoT KAIST NCSoft Yo Studio tidev kr 5 SK IoT DMB SK IoT A M LG SDS 6 OS API 7 ios API API BaaS Backend as a Service IoT IoT ThingPlug SK IoT SK M2M M2M

More information