ๆญฏ Final.PDF

Size: px
Start display at page:

Download "ๆญฏ2000-09-Final.PDF"

Transcription

1 <JSTORM> Design Pattern - API JSTORM -1-

2 java API Public Draft HISTORY 2001/2/ jstorm pdf. -2-

3 -3-

4 caller callee interface subclass superclass getinfo() -4-

5 caller interface callee getinfo() interface->getinfo() interface getinfo() callee2 getinfo() -5-

6

7 : ç -7-

8 -8-

9 -9- JDBCHelper JDBCHelper() connect() close() commit() next() select() update() getstring() getstring() getint() getint() getfloat() getfloat() getdate() getdate()

10 -10-

11 -11- JDBCHelper2 JDBCHelper() connect() close() commit() next() select() update() getstring() getstring() getint() getint() getfloat() getfloat() getdate() getdate() preparedstatement() pstmtsetstring() pstmtsetfloat() pstmtsetint() pstmtsetnull() pstmtselect() pstmtupdate()

12 JDBCHelper3 JDBCHelper() connect() close() commit() next() select() update() getstring() getstring() getint() getint() getfloat() getfloat() getdate() getdate() preparedstatement() pstmtsetstring() pstmtsetfloat() pstmtsetint() pstmtsetnull() pstmtselect() pstmtupdate() callablestatement() cstmtsetstring() cstmtsetfloat() cstmtsetint() cstmtsetnull() cstmtupdate() cstmtregisteroutparameter() -12-

13 -13-

14 -14-

15 ç ç ç -15-

16 ç -16-

17 JDBCHelperFactory createjdbchelper() getfactory() <<Interface>> JDBCHelperFactoryIF <<Interface>> JDBCHelper connect() close() commit() next() select() update() getstring() getstring() getint() getint() getfloat() getfloat() getdate() getdate() setstring() setfloat() setint() setnull() regoutparameter() JDBCStatementHelper JDBCPreparedStatementHelper createjdbchelper() 1. 2 PreparedStatement JDBC Helper - Factory Method Pattern -17-

18 -18-

19 -19- JDBCHelper connect() begintransaction() commt() select() update() getstring() getstring() getint() getint() getfloat() getfloat() getdate() getdate() setstring() setfloat() setint() setnull() regoutparameter() <<Interface>> JDBCStatementHelper JDBCPreparedStatementHelper JDBCHelperFactory getfactory() JDBCHelperFactoryIF getfactory() <<Interface>> JDBCCallableStatementHelper

20 CodeConverter convertfromdefault() converttodefault() createconverter() CodeConvert8859_1 convertfromdefault() converttodefault() CodeConverterKSC560 1 convertfromdefault() converttodefault() -20-

21 -21-

22 -22- SQLFactory createsqlfactory() getsearchsql() AnsiSQLFactory getsearchsql() OracleSQLFactory getsearchsql() MSSQLServerSQL Factory getsearchsql()

23 -23- : (Cache Management Pattern) 1 Refactoring : :.

24 -24-

25 2 GOF : Gang of Four : Design Pattern : the reusable Object 4 GOF Book

26 -26-

27 -27-

28 -28-

29 -29-

30 -30-

31 -31-

32 Box ç ç ç Client uses Facade class1 class Facade Pattern -32-

33 Product CreationRequestor operation1() operation2() requests-creation ConcreteProdu ct operation1() operation2() FactoryIF createproduct() Factory createproduct() 3. 4 Factory Method Pattern -33-

34 Client AbstractStrategy operation() ConcreteStrategy1 ConcreteStrategy2 operation() 4. 5 Strategy Pattern operation() -34-

35 -35-

36 ??? (Refactoring)., ,

37 Extract Method. void printowing(double amount) { printbanner(); //printdetails System.out.println( name: +_name); System.out.println( amount: +amount); }, printdetails. void printowing(double amount) { } printbanner(); printdetails(amount); void printdetails(double amount) { } System.out.println( name: +_name); System.out.println( amount: +amount); Extract Method.....,. Refactoring : Improving the Design of Existing Code,

38 . (Anti-Pattern)......,, (from : - : - : (Spaghetti Code ) :. - ( Stovepipe System ) :. - (Analysis Paralysis ) : -38-

39 . - (Swiss Army Knife ) :. - ( Ambiguous Viewpoint ) :.. - Anti Patterns : Refactoring Software, Architectures, and Projects in Crisis,1998 by William J.Brown & - Anti Patterns and Patterns in Software Configuration Management, 1998 by William J.Brown & -39-

40

41 System Use Case -41-

42 Produce-Consumer Model -42-

43

44

45

46

47 1. 2 : Request Diispatcher Exception -47-

48 -48-

49 : RequestDispatcher : ServerSocket : MasterThread : ServerProtocolHandler : ServerProtocolHandlerIF : ObjectInputStream : Command : ObjectOutputStream while loop start while loop end 1: ServerSocket(int) 2: accept( ) 3: MasterThread(Socket) 4: start( ) 5: getinstance( ) 6: getcommand(inputstream) 7: readobject( ) 8: execute( ) 9: send(outputstream, Object) 10: writeobject(object) -49-

50 -50-

51 -51-

52 RequestDispatcher (from server) port : int RequestDispatcher() run() main() MasterThread (from server) $ SOCKET_TIME_OUT : int = MasterThread() run() -$handler ServerProtocolHa ndlerif (from server) send() getcommand() ServerProtocolHandler (from server) ServerProtocolHandler() getinstance() getcommand() send() Command (from cmd) execute() getname() -52-

53 : Client : : EchoCommand ClientProtocolHandler : ClientProtocolHandlerIF : Socket : ObjectOutputStream : ObjectInputStream 1: setstring(string) 2: connect( ) 3: Socket(String, int) 4: getinstance( ) 5: sendcommand(inputstream, OutputStream, Command) 6: writeobject(object) 7: readobject( ) -53-

54 -54-

55 ServerException (from client) Client $ SOCKET_TIME_OUT : int = port : int Client() connect() run() main() (from client) ServerException() ServerException() ClientProtocolHandler (from client) ClientProtocolHandler() getinstance() send() receive() sendcommand() EchoCommand (from cmd) setstring() execute() getname() -$handler ClientProtocolHandl erif (from client) Command sendcommand() (from cmd) execute() getname()

56 -56-

57 -57-

58 -58-

59 : RequestDispatcher : ServerSocket : MasterThread : ServerProtocolHandler : ServerProtocolHandlerIF : ObjectInputStream : CommandQueue : Queue : Command : ObjectOutputStream 1: ServerSocket(int) 2: accept( ) 3: MasterThread(Socket) 4: start( ) 5: getinstance( ) 6: getcommand(inputstream) 7: readobject( ) CommandQueue.push, CommandQueue.pop added 8: push(command) 9: push(object) 10: wait() 11: execute( ) 12: send(outputstream, Object) 13: pop( ) 14: pop( ) 15: notify( ) -59-

60 Invoker AbstractCo mmand Manages 1 doit() 0..n +creator/invoker undoit() 1 CommandManager Creates-and-invokes +invokeeconcreatec ommand 0..n doit() undoit() -60-

61 -61-

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>

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

More information

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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72

More information

J2EE Concepts

J2EE Concepts ! Introduction to J2EE (1) - J2EE Servlet/JSP/JDBC iseminar.. 1544-3355 ( ) iseminar Chat. 1 Who Are We? Business Solutions Consultant Oracle Application Server 10g Business Solutions Consultant Oracle10g

More information

์ž๋ฐ”-11์žฅN'1-502

์ž๋ฐ”-11์žฅN'1-502 C h a p t e r 11 java.net.,,., (TCP/IP) (UDP/IP).,. 1 ISO OSI 7 1977 (ISO, International Standards Organization) (OSI, Open Systems Interconnection). 6 1983 X.200. OSI 7 [ 11-1] 7. 1 (Physical Layer),

More information

fundamentalOfCommandPattern_calmglow_pattern_jstorm_1.0_fโ€ฆ

fundamentalOfCommandPattern_calmglow_pattern_jstorm_1.0_fโ€ฆ Command JSTORM http://www.jstorm.pe.kr Command Issued by: < > Revision: Document Information Document title: Command Document file name: Revision number: Issued by: Issue

More information

10.ppt

10.ppt : SQL. SQL Plus. JDBC. SQL >> SQL create table : CREATE TABLE ( ( ), ( ),.. ) SQL >> SQL create table : id username dept birth email id username dept birth email CREATE TABLE member ( id NUMBER NOT NULL

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

KYO_SCCD.PDF

KYO_SCCD.PDF 1. Servlets. 5 1 Servlet Model. 5 1.1 Http Method : HttpServlet abstract class. 5 1.2 Http Method. 5 1.3 Parameter, Header. 5 1.4 Response 6 1.5 Redirect 6 1.6 Three Web Scopes : Request, Session, Context

More information

แ„‰แ…ตแ†ซแ„…แ…ตแ†ทแ„‘แ…ณแ„…แ…ฉแ„€แ…ณแ„…แ…ขแ„†แ…ฅ_แ„แ…ณแ†ฏแ„…แ…ตแ†ซแ„แ…ฉแ„ƒแ…ณ.key

แ„‰แ…ตแ†ซแ„…แ…ตแ†ทแ„‘แ…ณแ„…แ…ฉแ„€แ…ณแ„…แ…ขแ„†แ…ฅ_แ„แ…ณแ†ฏแ„…แ…ตแ†ซแ„แ…ฉแ„ƒแ…ณ.key CLEAN CODE 6 11st Front Dev. Team 6 1. 2. 3. checked exception 4. 5. 6. 11 : 2 4 : java (50%), javascript (35%), SQL/PL-SQL (15%) : Spring, ibatis, Oracle, jquery ? , (, ) ( ) ํด๋ฆฐ์ฝ”๋“œ๋ฅผ ๋ฌด์‹œํ•œ๋‹ค๋ฉด . 6 1. ,,,!

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

JMF3_์‹ฌ๋นˆ๊ตฌ.PDF

JMF3_์‹ฌ๋นˆ๊ตฌ.PDF JMF JSTORM http://wwwjstormpekr Issued by: < > Revision: Document Information Document title: Document file name: Revision number: Issued by: JMF3_ doc Issue Date:

More information

<C0DAB7E120C7D5BABB2E687770>

<C0DAB7E120C7D5BABB2E687770> ์ œ5ํšŒ SW๊ณตํ•™ Technical ์„ธ๋ฏธ๋‚˜ ํŒจํ„ด ์ €์ž์™€ ํ•จ๊ป˜ํ•˜๋Š” ํŒจํ„ด์ด์•ผ๊ธฐ ์„ธ๋ถ€ ํ”„๋กœ๊ทธ๋žจ ์‹œ ๊ฐ„ ๋‚ด ์šฉ ๊ฐ•์‚ฌ์ง„ 13:30 ~ 14:00 ๋“ฑ ๋ก 14:00 ~ 14:05 ์ธ์‚ฌ๋ง 14:05 ~ 15:00 15:00 ~ 15:30 15:30 ~ 17:00 o ๋ฏธ์›Œ๋„ ๋‹ค์‹œ ๋ณด๋Š” ํŒจํ„ด์ด์•ผ๊ธฐ - SW ์„ค๊ณ„์˜ ํŒจํ„ด๊ณผ ๋‹ค์–‘ํ•œ ํŒจํ„ด์˜ ์ฃผ์ œ ์†Œ๊ฐœ - ํŒจํ„ด์˜ 3๋ฐ•์ž์™€ ํŒจํ„ด์œผ๋กœ

More information

Microsoft Word - SE_Team Report.docx

Microsoft Word - SE_Team Report.docx ใ…กใ„น Team Report Introduction to OOAD using UML Tools ๊ณผ ๋ชฉ ์†Œํ”„ํŠธ์›จ์–ด ๊ณตํ•™ ๊ฐœ๋ก  ๋‹ด๋‹น๊ต์ˆ˜ ์œ  ์ค€ ๋ฒ” ๊ต์ˆ˜๋‹˜ ์ œ ์ถœ ์ผ 2010. 10. 25 ํ•™ ๊ณผ ์ปดํ“จํ„ฐ๊ณตํ•™๋ถ€ 4 ํ•™ ๋…„ 200714170 ๋ชจ์ง„์ข… 200714172 ๋ฐฐ๋ณด๋žŒ 200511350 ์žฅ๋ฒ”์„ 200511311 ๊น€์ง„์ˆ˜ ๋ชฉ์ฐจ 1. OOAD 2. UML (1) Analysis

More information

Microsoft PowerPoint - Supplement-03-TCP Programming.ppt [ํ˜ธํ™˜ ๋ชจ๋“œ]

Microsoft PowerPoint - Supplement-03-TCP Programming.ppt [ํ˜ธํ™˜ ๋ชจ๋“œ] - Socket Programming in Java - ๋ชฉ์ฐจ ์†Œ์ผ“์†Œ๊ฐœ ์ž๋ฐ”์—์„œ์˜ TCP ํ”„๋กœ๊ทธ๋žจ์ž‘์„ฑ๋ฐฉ๋ฒ• ์ฃผ์š”ํด๋ž˜์Šค์™€๋ฉ”์†Œ๋“œ HTTP ํ”„๋กœํ† ์ฝœ์„์ด์šฉํ•œ์˜ˆ์ œ ์—์ฝ”ํ”„๋กœ๊ทธ๋žจ Q/A ์—์ฝ”ํ”„๋กœ๊ทธ๋žจ - EchoServer ์—์ฝ”ํ”„๋กœ๊ทธ๋žจ - EchoClient TCP Programming 1 ์†Œ์ผ“์†Œ๊ฐœ IP, Port, and Socket ํฌํŠธ (Port): ์ „์†ก๊ณ„์ธต์—์„œํ†ต์‹ ์„์ˆ˜ํ–‰ํ•˜๋Š”์‘์šฉํ”„๋กœ๊ทธ๋žจ์„์ฐพ๊ธฐ์œ„ํ•œ์ฃผ์†Œ

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

๋น„๊ธด์ฟก-์ž๋ฐ” 00์•ž๋ถ€์†

๋น„๊ธด์ฟก-์ž๋ฐ” 00์•ž๋ถ€์† IT COOKBOOK 14 Java P r e f a c e Stay HungryStay Foolish 3D 15 C 3 16 Stay HungryStay Foolish CEO 2005 L e c t u r e S c h e d u l e 1 14 PPT API C A b o u t T h i s B o o k IT CookBook for Beginner Chapter

More information

๋ชฉ์ฐจ 1. ๊ฐœ์š”... 3 2. USB ๋“œ๋ผ์ด๋ฒ„ ์„ค์น˜ (FTDI DRIVER)... 4 2-1. FTDI DRIVER ์‹คํ–‰ํŒŒ์ผ... 4 2-2. USB ๋“œ๋ผ์ด๋ฒ„ ํ™•์ธ๋ฐฉ๋ฒ•... 5 3. DEVICE-PROGRAMMER ์„ค์น˜... 7 3-1. DEVICE-PROGRAMMER

๋ชฉ์ฐจ 1. ๊ฐœ์š”... 3 2. USB ๋“œ๋ผ์ด๋ฒ„ ์„ค์น˜ (FTDI DRIVER)... 4 2-1. FTDI DRIVER ์‹คํ–‰ํŒŒ์ผ... 4 2-2. USB ๋“œ๋ผ์ด๋ฒ„ ํ™•์ธ๋ฐฉ๋ฒ•... 5 3. DEVICE-PROGRAMMER ์„ค์น˜... 7 3-1. DEVICE-PROGRAMMER < Tool s Guide > ๋ชฉ์ฐจ 1. ๊ฐœ์š”... 3 2. USB ๋“œ๋ผ์ด๋ฒ„ ์„ค์น˜ (FTDI DRIVER)... 4 2-1. FTDI DRIVER ์‹คํ–‰ํŒŒ์ผ... 4 2-2. USB ๋“œ๋ผ์ด๋ฒ„ ํ™•์ธ๋ฐฉ๋ฒ•... 5 3. DEVICE-PROGRAMMER ์„ค์น˜... 7 3-1. DEVICE-PROGRAMMER ์‹คํ–‰ํŒŒ์ผ... 7 4. DEVICE-PROGRAMMER ์‚ฌ์šฉํ•˜๊ธฐ...

More information

5แ„Œแ…กแ†ผ.key

5แ„Œแ…กแ†ผ.key JAVA Programming 1 (inheritance) 2!,!! 4 3 4!!!! 5 public class Person {... public class Student extends Person { // Person Student... public class StudentWorker extends Student { // Student StudentWorker...!

More information

์ดˆ๋ณด์ž๋ฅผ ์œ„ํ•œ ์ž๋ฐ” 2 21์ผ ์™„์„ฑ - ์ตœ์‹ ๊ฐœ์ •ํŒ

์ดˆ๋ณด์ž๋ฅผ ์œ„ํ•œ ์ž๋ฐ” 2 21์ผ ์™„์„ฑ - ์ตœ์‹ ๊ฐœ์ •ํŒ .,,.,. 7. Sun Microsystems.,,. Sun Bill Joy.. 15... ( ), ( )... 4600. .,,,,,., 5 Java 2 1.4. C++, Perl, Visual Basic, Delphi, Microsoft C#. WebGain Visual Cafe, Borland JBuilder, Sun ONE Studio., Sun Java

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

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r Jakarta is a Project of the Apache

More information

rmi_๋ฐ•์ค€์šฉ_final.PDF

rmi_๋ฐ•์ค€์šฉ_final.PDF (RMI) - JSTORM http://wwwjstormpekr (RMI)- Document title: Document file name: Revision number: Issued by: Document Information (RMI)- rmi finaldoc Issue Date: Status:

More information

Microsoft PowerPoint - 03-TCP Programming.ppt

Microsoft PowerPoint - 03-TCP Programming.ppt Chapter 3. - Socket in Java - ๋ชฉ์ฐจ ์†Œ์ผ“์†Œ๊ฐœ ์ž๋ฐ”์—์„œ์˜ ํ”„๋กœ๊ทธ๋žจ์ž‘์„ฑ๋ฐฉ๋ฒ• ์ฃผ์š”ํด๋ž˜์Šค์™€๋ฉ”์†Œ๋“œ HTTP ํ”„๋กœํ† ์ฝœ์„์ด์šฉํ•œ์˜ˆ์ œ ์—์ฝ”ํ”„๋กœ๊ทธ๋žจ ์—์ฝ”ํ”„๋กœ๊ทธ๋žจ - EchoServer ์—์ฝ”ํ”„๋กœ๊ทธ๋žจ - EchoClient Q/A 1 1 ์†Œ์ผ“์†Œ๊ฐœ IP,, and Socket ํฌํŠธ (): ์ „์†ก๊ณ„์ธต์—์„œํ†ต์‹ ์„์ˆ˜ํ–‰ํ•˜๋Š”์‘์šฉํ”„๋กœ๊ทธ๋žจ์„์ฐพ๊ธฐ์œ„ํ•œ์ฃผ์†Œ ์†Œ์ผ“ (Socket):

More information

MasoJava4_Dongbin.PDF

MasoJava4_Dongbin.PDF JSTORM http://wwwjstormpekr Issued by: < > Revision: Document Information Document title: Document file name: MasoJava4_Dongbindoc Revision number: Issued by: < > SI, dbin@handysoftcokr

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

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

Something that can be seen, touched or otherwise sensed

Something that can be seen, touched or otherwise sensed Something that can be seen, touched or otherwise sensed Things about an object Weight Height Material Things an object does Pen writes Book stores words Water have Fresh water Rivers Oceans have

More information

Sena Device Server Serial/IP TM Version

Sena Device Server Serial/IP TM Version Sena Device Server Serial/IP TM Version 1.0.0 2005. 3. 7. Release Note Revision Date Name Description V1.0.0 2005-03-7 HJ Jeon Serial/IP 4.3.2 ( ) 210 137-130, : (02) 573-5422 : (02) 573-7710 email: support@sena.com

More information

์ œ๋ชฉ์„ ์ž…๋ ฅํ•˜์„ธ์š”.

์ œ๋ชฉ์„ ์ž…๋ ฅํ•˜์„ธ์š”. 1. 4 1.1. SQLGate for Oracle? 4 1.2. 4 1.3. 5 1.4. 7 2. SQLGate for Oracle 9 2.1. 9 2.2. 10 2.3. 10 2.4. 13 3. SQLGate for Oracle 15 3.1. Connection 15 Connect 15 Multi Connect 17 Disconnect 18 3.2. Query

More information

..........(......).hwp

..........(......).hwp START START ์งˆ๋ฌธ์„ ํ†ตํ•ด ์šฐ์„ ์ˆœ์œ„๋ฅผ ๊ฒฐ์ • ์˜์‚ฌ๊ฒฐ์ •์ž๊ฐ€ ์งˆ๋ฌธ์— ๋‹ตํ•จ ๋ชจํ˜•๋ฐ์ดํ„ฐ ์ž…๋ ฅ ๋ชฉํ‘œ๊ณ„ํš๋ฒ• ์ž๋ฃŒ ๋ชฉํ‘œ๊ณ„ํš๋ฒ• ๋ชจํ˜•์— ์˜ํ•œ ํ•ด์˜ ๋„์ถœ๊ณผ ๋“์‹ค/ํ™•๋ฅ  ๋ถ„์„ END ๋ชฉํ‘œ๊ณ„ํš๋ฒ• ์‚ฐ์ถœ๊ฒฐ๊ณผ ๊ฒฐ๊ณผ๋ฅผ ์˜์‚ฌ ๊ฒฐ์ •์ž์—๊ฒŒ ์ œ๊ณต ์˜์‚ฌ๊ฒฐ์ •์ž๊ฐ€ ๊ฒฐ๊ณผ๋ฅผ ๊ฒ€ํ† ํ•˜์—ฌ ๋งŒ์กฑ์—ฌ๋ถ€๋ฅผ ๋Œ€๋‹ต ์˜์‚ฌ๊ฒฐ์ •์ž์—๊ฒŒ ๋งŒ์กฑํ•˜๋Š”๊ฐ€? Yes END No ๋ชฉํ‘œ๊ณ„ํš๋ฒ• ์ˆ˜์ • ์ž๋ฃŒ ๊ฐœ์„ ์„ ์œ„ํ•œ ์„ ํƒ์˜ ์—ฌ์ง€๊ฐ€ ์žˆ๋Š”์ง€

More information

JMF2_์‹ฌ๋นˆ๊ตฌ.PDF

JMF2_์‹ฌ๋นˆ๊ตฌ.PDF JMF JSTORM http://wwwjstormpekr Issued by: < > Document Information Document title: Document file name: Revision number: Issued by: JMF2_ doc Issue Date: Status: < > raica@nownurinet

More information

chapter4

chapter4 Basic Netw rk 1. เธ เธ เธ 2. 3. เธ เธ 4. เธ 2 1. 2. 3. 4. เธ 5. เธ 6. เธ เธ 7. เธ 3 เธ เธ เธ เธ (Mainframe) เธ เธ เธ เธ (Terminal) เธ เธ เธ เธ เธ เธ เธ เธ 4 เธ (Dumb Terminal) เธ เธ เธ เธ Mainframe เธ CPU เธ เธ เธ เธ 5 เธ เธ เธ เธ เธ เธ เธ เธ เธ เธ

More information

mytalk

mytalk ํ•œ๊ตญ์ •๋ณด๋ณดํ˜ธํ•™ํšŒ์†Œํ”„ํŠธ์›จ์–ด๋ณด์•ˆ์—ฐ๊ตฌํšŒ ์ด๊ด„์ฑ…์ž„์ž ์ทจ์•ฝ์ ๋ถ„์„ํŒ€ ์•ˆ์ค€์„  ( ํ•ญ๊ณต๋Œ€ ) ๋„๊ฒฝ๊ตฌ ( ํ•œ์–‘๋Œ€ ) ๋„๊ตฌ๊ฐœ๋ฐœํŒ€๋„๊ฒฝ๊ตฌ ( ํ•œ์–‘๋Œ€ ) ์‹œํ์–ด์ฝ”๋”ฉํŒ€ ์˜ค์„ธ๋งŒ ( ๋™๊ตญ๋Œ€ ) ์ „์ฒด์ ์ธ ๊ทธ๋ฆผ IL Rules Flowgraph Generator Flowgraph Analyzer ํ๋ฆ„๊ทธ๋ž˜ํ”„ ์ƒ์„ฑ๊ธฐ ํ๋ฆ„๊ทธ๋ž˜ํ”„ ๋ถ„์„๊ธฐ O parser ์ค‘๊ฐ„์–ธ์–ด O ํŒŒ์„œ RDL

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

OPCTalk for Hitachi Ethernet 1 2. Path. DCOMwindow NT/2000 network server. Winsock update win95. . . 3 Excel CSV. Update Background Thread Client Command Queue Size Client Dynamic Scan Block Block

More information

ยพร‹ยฑรขยฝยฌยฟรฎร€ยฑยธยฎยฐรฆยฟยตc03ร–รยพลก

ยพร‹ยฑรขยฝยฌยฟรฎร€ยฑยธยฎยฐรฆยฟยตc03ร–รยพลก & 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 & 27 28 29 30 31 32 33 34 35 36 37 38 & 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 & 55 56 57 58 59 60 61 62 63

More information

Interstage5 SOAP์„œ๋น„์Šค ์„ค์ • ๊ฐ€์ด๋“œ

Interstage5 SOAP์„œ๋น„์Šค ์„ค์ • ๊ฐ€์ด๋“œ Interstage 5 Application Server ( Solaris ) SOAP Service Internet Sample Test SOAP Server Application SOAP Client Application CORBA/SOAP Server Gateway CORBA/SOAP Gateway Client INTERSTAGE SOAP Service

More information

07 แ„Œแ…กแ„‡แ…กแ„‹แ…ด แ„ƒแ…กแ„‹แ…ฃแ†ผแ„’แ…กแ†ซ แ„แ…ณแ†ฏแ„…แ…ขแ„‰แ…ณ.key

07 แ„Œแ…กแ„‡แ…กแ„‹แ…ด แ„ƒแ…กแ„‹แ…ฃแ†ผแ„’แ…กแ†ซ แ„แ…ณแ†ฏแ„…แ…ขแ„‰แ…ณ.key [ 07 ] . java.lang Object, Math, String, StringBuffer Byte, Short, Integer, Long, Float, Double, Boolean, Character. java.util Random, StringTokenizer Calendar, GregorianCalendar, Date. Collection, List,

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

13-Java Network Programming

13-Java Network Programming JAVA Programming Language JAVA Network Programming IP Address(Internet Protocol Address) URL(Uniform Resource Location) TCP(Transmission Control Protocol) Socket UDP(User Datagram Protocol) Client / Server

More information

No Slide Title

No Slide Title J2EE J2EE(Java 2 Enterprise Edition) (Web Services) :,, SOAP: Simple Object Access Protocol WSDL: Web Service Description Language UDDI: Universal Discovery, Description & Integration 4. (XML Protocol

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

Chap7.PDF

Chap7.PDF Chapter 7 The SUN Intranet Data Warehouse: Architecture and Tools All rights reserved 1 Intranet Data Warehouse : Distributed Networking Computing Peer-to-peer Peer-to-peer:,. C/S Microsoft ActiveX DCOM(Distributed

More information

์ œ11์žฅ ํ”„๋กœ์„ธ์Šค์™€ ์“ฐ๋ ˆ๋“œ

์ œ11์žฅ ํ”„๋กœ์„ธ์Šค์™€ ์“ฐ๋ ˆ๋“œ ์ œ9์žฅ์ž๋ฐ”์“ฐ๋ ˆ๋“œ 9.1 Thread ๊ธฐ์ดˆ (1/5) ํ”„๋กœ๊ทธ๋žจ ๋ช…๋ น์–ด๋“ค์˜์—ฐ์† (a sequence of instruction) ํ”„๋กœ์„ธ์Šค / Thread ์‹คํ–‰์ค‘์ธํ”„๋กœ๊ทธ๋žจ (program in execution) ํ”„๋กœ์„ธ์Šค์ƒ์„ฑ๊ณผ์‹คํ–‰์„์œ„ํ•œํ•จ์ˆ˜๋“ค ์ž๋ฐ” Thread 2 9.1 Thread ๊ธฐ์ดˆ (2/5) ํ”„๋กœ์„ธ์Šค๋‹จ์œ„์ž‘์—…์˜๋ฌธ์ œ์  ํ”„๋กœ์„ธ์Šค์ƒ์„ฑ์‹œ์˜ค๋ฒ„ํ—ค๋“œ ์ปจํ…์ŠคํŠธ์Šค์œ„์น˜์˜ค๋ฒ„ํ—ค๋“œ

More information

iii. Design Tab ์„ Click ํ•˜์—ฌ WindowBuilder ๊ฐ€์ž๋™์œผ๋กœ์ƒ์„ฑํ•œ GUI ํ”„๋กœ๊ทธ๋ž˜๋ฐํ™˜๊ฒฝ์„ํ™•์ธํ•œ๋‹ค.

iii. Design Tab ์„ Click ํ•˜์—ฌ WindowBuilder ๊ฐ€์ž๋™์œผ๋กœ์ƒ์„ฑํ•œ GUI ํ”„๋กœ๊ทธ๋ž˜๋ฐํ™˜๊ฒฝ์„ํ™•์ธํ•œ๋‹ค. Eclipse ๊ฐœ๋ฐœํ™˜๊ฒฝ์—์„œ WindowBuilder ๋ฅผ์ด์šฉํ•œ Java ํ”„๋กœ๊ทธ๋žจ๊ฐœ๋ฐœ ์ด์˜ˆ๋Š” Java ํ”„๋กœ๊ทธ๋žจ์˜๊ธฐ์ดˆ๋ฅผ์ดํ•ดํ•˜๊ณ ์žˆ๋Š”์‚ฌ๋žŒ์„๋Œ€์ƒ์œผ๋กœ Embedded Microcomputer ๋ฅผ์ด์šฉํ•œ์ œ์–ด์‹œ์Šคํ…œ์„ PC ์—์„œ Serial ํ†ต์‹ ์œผ๋กœ์ œ์–ด (Graphical User Interface (GUI) ํ™˜๊ฒฝ์—์„œ ) ํ•˜๋Š”ํ”„๋กœ๊ทธ๋žจ๊ฐœ๋ฐœ์˜ˆ๋ฅผ์„ค๋ช…ํ•œ๋‹ค. WindowBuilder:

More information

FileMaker ODBC and JDBC Guide

FileMaker ODBC and JDBC Guide FileMaker 13 5 5 5 6 6 6 7 7 8 8 8 8 9 9 10 10 11 11 12 12 12 12 12 12 13 13 14 14 16 16 18 4 19 19 20 20 21 21 21 23 23 23 23 25 26 26 26 26 27 28 28 28 28 29 31 31 32 33 33 33 33 34 34 35 35 35 36 1

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

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

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ Team 1 201611293 ์ „๋‹ค์œค 201311287 ์—„ํ˜„์‹ 201311318 ์ตœ์ •ํ—Œ 01. ๋ฌธ์„œ์ˆ˜์ • 02. System Test Review 03. Static Test Review 04. ์†Œ๊ฐ 1 ๋ฌธ์„œ์ˆ˜์ • ๋ฌธ์„œ์ˆ˜์ • ์ˆ˜์ • System Test ๋ฌธ์„œ + ์ „๋ฌธ์„œ์—์—†๋˜์ˆ˜์ •์‚ฌํ•ญ ์ˆ˜์ • System Test ๋ฌธ์„œ ๋ฌธ์„œ์ˆ˜์ • ์†Œํ”„ํŠธ์›จ์–ด๊ฒ€์ฆํŒ€์˜๋ฌธ์„œ๋Œ€๋กœ์ˆ˜์ •ํ•œ์‚ฌํ•ญ๋“ค 1008

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

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

FileMaker ODBC ๋ฐ JDBC ๊ฐ€์ด๋“œ

FileMaker ODBC ๋ฐ JDBC ๊ฐ€์ด๋“œ FileMaker ODBC JDBC 2004-2019 FileMaker, Inc.. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, FileMaker Cloud, FileMaker Go FileMaker, Inc.. FileMaker WebDirect FileMaker,

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

( )๋ถ€๋ก

( )๋ถ€๋ก A ppendix 1 2010 5 21 SDK 2.2. 2.1 SDK. DevGuide SDK. 2.2 Frozen Yoghurt Froyo. Donut, Cupcake, Eclair 1. Froyo (Ginger Bread) 2010. Froyo Eclair 0.1.. 2.2. UI,... 2.2. PC 850 CPU Froyo......... 2. 2.1.

More information

11 ํ…œํ”Œ๋ฆฟ์ ์šฉ - Java Program Performance Tuning (๊น€๋ช…ํ˜ธ๊ธฐ์ˆ ์ด์‚ฌ)

11 ํ…œํ”Œ๋ฆฟ์ ์šฉ - Java Program Performance Tuning (๊น€๋ช…ํ˜ธ๊ธฐ์ˆ ์ด์‚ฌ) Java Program Performance Tuning ( ) n (Primes0) static List primes(int n) { List primes = new ArrayList(n); outer: for (int candidate = 2; n > 0; candidate++) { Iterator iter = primes.iterator(); while

More information

11๊ฐ•-ํž™์ •๋ ฌ.ppt

11๊ฐ•-ํž™์ •๋ ฌ.ppt 11 (Heap ort) leejaku@shinbiro.com Topics? Heap Heap Opeations UpHeap/Insert, DownHeap/Extract Binary Tree / Index Heap ort Heap ort 11.1 (Priority Queue) Operations ? Priority Queue? Priority Queue tack

More information

API STORE ํ‚ค๋ฐœ๊ธ‰๋ฐ API ์‚ฌ์šฉ๊ฐ€์ด๋“œ Document Information ๋ฌธ์„œ๋ช… : API STORE ์–ธ์–ด๋ณ„ Client ์‚ฌ์šฉ๊ฐ€์ด๋“œ์ž‘์„ฑ์ž : ์ž‘์„ฑ์ผ : ์—…๋ฌด์˜์—ญ : ๋ฒ„์ „ : 1 st Draft. ์„œ๋ธŒ์‹œ์Šคํ…œ : ๋ฌธ์„œ๋ฒˆํ˜ธ : ๋‹จ๊ณ„ : Docum

API STORE ํ‚ค๋ฐœ๊ธ‰๋ฐ API ์‚ฌ์šฉ๊ฐ€์ด๋“œ Document Information ๋ฌธ์„œ๋ช… : API STORE ์–ธ์–ด๋ณ„ Client ์‚ฌ์šฉ๊ฐ€์ด๋“œ์ž‘์„ฑ์ž : ์ž‘์„ฑ์ผ : ์—…๋ฌด์˜์—ญ : ๋ฒ„์ „ : 1 st Draft. ์„œ๋ธŒ์‹œ์Šคํ…œ : ๋ฌธ์„œ๋ฒˆํ˜ธ : ๋‹จ๊ณ„ : Docum API STORE ํ‚ค๋ฐœ๊ธ‰๋ฐ API ์‚ฌ์šฉ๊ฐ€์ด๋“œ Document Information ๋ฌธ์„œ๋ช… : API STORE ์–ธ์–ด๋ณ„ Client ์‚ฌ์šฉ๊ฐ€์ด๋“œ์ž‘์„ฑ์ž : ์ž‘์„ฑ์ผ : 2012.11.23 ์—…๋ฌด์˜์—ญ : ๋ฒ„์ „ : 1 st Draft. ์„œ๋ธŒ์‹œ์Šคํ…œ : ๋ฌธ์„œ๋ฒˆํ˜ธ : ๋‹จ๊ณ„ : Document Distribution Copy Number Name(Role, Title) Date

More information

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS ( PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (http://ddns.hanwha-security.com) Step 1~5. Step, PC, DVR Step 1. Cable Step

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

untitled

untitled PowerBuilder ๏ฆš Microsoft SQL Server database PB10.0 PB9.0 ๏ฅด Microsoft SQL Server ๏ฆพ database Profile MSS ๏ฆพ (Microsoft SQL Server database interface) ๏จˆ๏ฆบ PB10.0 ๏ฆบ Sybase ๏ฅง Microsoft ๏ฆพ ๏ฆบ SQL Server ๏ฆพ PB10.0

More information

MPLAB C18 C

MPLAB C18 C MPLAB C18 C MPLAB C18 MPLAB C18 C MPLAB C18 C #define START, c:\mcc18 errorlevel{0 1} char isascii(char ch); list[list_optioin,list_option] OK, Cancel , MPLAB IDE User s Guide MPLAB C18 C

More information

2 14:00-14:05 14:05-14:10 14:10-14:15 14:15-14:30 Seoul Culturenomics, Vision & Strategy 14:30-14:40 14:40-15:10 15:10-15:40 15:40-16:10 (Rebranding) 16:10-16:30 16:30 1 03 17 19 53 55 65 2 3 6 7 8 9 ์„œ์šธ๋ฌธํ™”ํฌ๋Ÿผ

More information

untitled

untitled Memory leak Resource ๏ฆŠ ๏คŠ 3-tier ๏จŠ Out of Memory( ๏ฅง ) Memory leak( ๏ฅŽ ) ๏งบ Application Server Crash ๏งค Server ๏งบ Crash ๏ง JVM ๏ฅฏ ๏ฆต ๏จˆ๏ฅฏ ๏ฅฏ Memory leak Resource Out of Memory Memory leak Out of Memory ๏ฅง๏ฅ Java heap

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

13 Who am I? R&D, Product Development Manager / Smart Worker Visualization SW SW KAIST Software Engineering Computer Engineering 3

13 Who am I? R&D, Product Development Manager / Smart Worker Visualization SW SW KAIST Software Engineering Computer Engineering 3 13 Lightweight BPM Engine SW 13 Who am I? R&D, Product Development Manager / Smart Worker Visualization SW SW KAIST Software Engineering Computer Engineering 3 BPM? 13 13 Vendor BPM?? EA??? http://en.wikipedia.org/wiki/business_process_management,

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

untitled

untitled Embedded System Lab. II Embedded System Lab. II 2 RTOS Hard Real-Time vs Soft Real-Time RTOS Real-Time, Real-Time RTOS General purpose system OS H/W RTOS H/W task Hard Real-Time Real-Time System, Hard

More information

OOP ์†Œ๊ฐœ

OOP ์†Œ๊ฐœ OOP : @madvirus, : madvirus@madvirus.net : @madvirus : madvirus@madvirus.net ) ) ) 7, 3, JSP 2 ? 3 case R.id.txt_all: switch (menu_type) { case GROUP_ALL: showrecommend("month"); case GROUP_MY: type =

More information

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC Step 1~5. Step, PC, DVR Step 1. Cable Step

More information

final_thesis

final_thesis CORBA/SNMP DPNM Lab. POSTECH email : ymkang@postech.ac.kr Motivation CORBA/SNMP CORBA/SNMP 2 Motivation CMIP, SNMP and CORBA high cost, low efficiency, complexity 3 Goal (Information Model) (Operation)

More information

Microsoft PowerPoint - RMI.ppt

Microsoft PowerPoint - RMI.ppt ( ๋ถ„์‚ฐํ†ต์‹ ์‹ค์Šต ) RMI RMI ์ตํžˆ๊ธฐ 1. ๋ถ„์‚ฐํ™˜๊ฒฝ์—์„œ๋™์ž‘ํ•˜๋Š” message-passing์„์ด์šฉํ•œ boundedbuffer ํ•ด๋ฒ•ํ”„๋กœ๊ทธ๋žจ์„์‹คํ–‰ํ•ด๋ณด์„ธ์š”. ์†Œ์Šค์ฝ”๋“œ : ftp://211.119.245.153 -> os -> OSJavaSources -> ch15 -> rmi http://marvel el.incheon.ac.kr์˜ Information Unix

More information

PowerSHAPE ๋”ฐ๋ผํ•˜๊ธฐ Calculate ๋ฒ„ํŠผ์„ ํด๋ฆญํ•œ๋‹ค. Close ๋ฒ„ํŠผ์„ ๋ˆŒ๋Ÿฌ ๋ฏธ๋Ÿฌ ๋ฆด๋ฆฌํ”„ ํŽ˜์ด์ง€๋ฅผ ๋‹ซ๋Š”๋‹ค. D ํ™”๋ฉด์„ ๋ณด๊ธฐ ์œ„ํ•˜์—ฌ F ํ‚ค๋ฅผ ๋ˆ„๋ฅธ๋‹ค. - ๋ชจ๋ธ์ด ๋‹ค์Œ๊ณผ ๊ฐ™์ด ๋ณด์ด๊ฒŒ ๋  ๊ฒƒ์ด๋‹ค. ์—ด๋งค ๋งŒ๋“ค๊ธฐ Shape Editor๋ฅผ ์ด์šฉํ•˜์—ฌ ์—ด๋งค๋ฅผ ๋งŒ๋“ค์–ด ๋ณด๋„๋ก

PowerSHAPE ๋”ฐ๋ผํ•˜๊ธฐ Calculate ๋ฒ„ํŠผ์„ ํด๋ฆญํ•œ๋‹ค. Close ๋ฒ„ํŠผ์„ ๋ˆŒ๋Ÿฌ ๋ฏธ๋Ÿฌ ๋ฆด๋ฆฌํ”„ ํŽ˜์ด์ง€๋ฅผ ๋‹ซ๋Š”๋‹ค. D ํ™”๋ฉด์„ ๋ณด๊ธฐ ์œ„ํ•˜์—ฌ F ํ‚ค๋ฅผ ๋ˆ„๋ฅธ๋‹ค. - ๋ชจ๋ธ์ด ๋‹ค์Œ๊ณผ ๊ฐ™์ด ๋ณด์ด๊ฒŒ ๋  ๊ฒƒ์ด๋‹ค. ์—ด๋งค ๋งŒ๋“ค๊ธฐ Shape Editor๋ฅผ ์ด์šฉํ•˜์—ฌ ์—ด๋งค๋ฅผ ๋งŒ๋“ค์–ด ๋ณด๋„๋ก PowerSHAPE ๋”ฐ๋ผํ•˜๊ธฐ ๊ฐ€๊ตฌ ์žฅ์‹ ๋งŒ๋“ค๊ธฐ ์ด๋ฒˆ ํ˜ธ์—์„œ๋Š” ArtCAM V๋ฅผ ์ด์šฉํ•˜์—ฌ ๊ฐ€๊ตฌ ์žฅ์‹๋ฌผ์— ๋Œ€ํ•ด์„œ D ์กฐ๊ฐ ํŒŒํŠธ๋ฅผ ์ƒ์„ฑํ•ด ๋ณด๋„๋ก ํ•˜๊ฒ ๋‹ค. ์ค‘์‹ฌ ์žŽ ๋งŒ๋“ค๊ธฐ ํˆฌ ๋ ˆ์ผ ์Šค์œ• ๊ธฐ๋Šฅ์„ ์ด์šฉํ•˜์—ฌ ๊ฐœ์˜ ์žŽ์„ ๋งŒ๋“ค์–ด๋ณด๋„๋ก ํ•˜๊ฒ ๋‹ค. ๋ฏธ๋ฆฌ ์ค€๋น„๋œ Wood Decoration.art ํŒŒ์ผ์„ ๋ถˆ๋Ÿฌ์˜จ๋‹ค. Main Leaves ๋ฒกํ„ฐ ๋ ˆ์ด์–ด๋ฅผ on ์‹œํ‚จ๋‹ค. ๋ฆด๋ฆฌํ”„ ํƒญ์— ์žˆ๋Š”

More information

Microsoft Word - Installation and User Manual_CMD V2.2_.doc

Microsoft Word - Installation and User Manual_CMD V2.2_.doc CARDMATIC CMD INSTALLATION MANUAL ์”จ์•ค์—์ด์”จ์Šคํ…œ(C&A SYSTEM Co., Ltd.) ๋ณธ์‚ฌ : ์„œ์šธํŠน๋ณ„์‹œ ์šฉ์‚ฐ๊ตฌ ์‹ ๊ณ„๋™ 24-1(๊ธˆ์–‘๋นŒ๋”ฉ 2์ธต) TEL. (02)718-2386( ไปฃ ) FAX. (02) 701-2966 ๊ณต์žฅ/์—ฐ๊ตฌ์†Œ : ๊ฒฝ๊ธฐ๋„ ๊ณ ์–‘์‹œ ์ผ์‚ฐ๋™๊ตฌ ๋ฐฑ์„๋™ 1141-2 ์œ ๋‹ˆํ…Œํฌ๋นŒ 324ํ˜ธ TEL. (031)907-1386

More information

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration

More information

ร€ยฉยตยตยณร—ร†ยฎยฟรทร‡รยทรŽยฑร—ยทยกยนร–4ร€รฅ_รƒร–รยพ

ร€ยฉยตยตยณร—ร†ยฎยฟรทร‡รยทรŽยฑร—ยทยกยนร–4ร€รฅ_รƒร–รยพ P a 02 r t Chapter 4 TCP Chapter 5 Chapter 6 UDP Chapter 7 Chapter 8 GUI C h a p t e r 04 TCP 1 3 1 2 3 TCP TCP TCP [ 4 2] listen connect send accept recv send recv [ 4 1] PC Internet Explorer HTTP HTTP

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

untitled

untitled CAN BUS RS232 Line CAN H/W FIFO RS232 FIFO CAN S/W FIFO TERMINAL Emulator COMMAND Interpreter PROTOCOL Converter CAN2RS232 Converter Block Diagram > +- syntax

More information

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

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ INDEX 1. -MAIN A B H C I D E F G J K L d a b c J 4 2 3 1 J 1 2 3 4 1 6 2 3 4 5 7 1 2 3 4 5 7 4 1 2 3 9 8 5 6 7 1 2 3 9 8 6 7 2. G 1 3 2 8 7 4 9 10 5 6 12 11 a b c d e 1 2 4 3 2 4 8-2.

More information

DE1-SoC Board

DE1-SoC Board ์‹ค์Šต 1 ๊ฐœ๋ฐœํ™˜๊ฒฝ DE1-SoC Board Design Tools - Installation Download & Install Quartus Prime Lite Edition http://www.altera.com/ Quartus Prime (includes Nios II EDS) Nios II Embedded Design Suite (EDS) is automatically

More information

(Asynchronous Mode) ( 1, 5~8, 1~2) & (Parity) 1 ; * S erial Port (BIOS INT 14H) - 1 -

(Asynchronous Mode) ( 1, 5~8, 1~2) & (Parity) 1 ; * S erial Port (BIOS INT 14H) - 1 - (Asynchronous Mode) - - - ( 1, 5~8, 1~2) & (Parity) 1 ; * S erial Port (BIOS INT 14H) - 1 - UART (Univ ers al As y nchronous Receiver / T rans mitter) 8250A 8250A { COM1(3F8H). - Line Control Register

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

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

์ž๋ฐ” ํ”„๋กœ๊ทธ๋ž˜๋ฐ

์ž๋ฐ” ํ”„๋กœ๊ทธ๋ž˜๋ฐ 5 (kkman@mail.sangji.ac.kr) (Class), (template) (Object) public, final, abstract [modifier] class ClassName { // // (, ) Class Circle { int radius, color ; int x, y ; float getarea() { return 3.14159

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

์›น์˜ ๋ผˆ๋Œ€, HTML

์›น์˜ ๋ผˆ๋Œ€, HTML 6. JSP ์™€ DB ์—ฐ๋™ 1. ๊ด€๊ณ„ํ˜•๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์‹œ์Šคํ…œ 2. JDBC Programming 3. ๊ฒฌ๋ณธ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์ƒ์„ฑ 4. Report ์‹ค์Šต์˜ˆ์ œ ์›น์„œ๋ฒ„์™€ DB ์„œ๋ฒ„์™€์˜๊ด€๊ณ„ Client Web Browser HTTP ์š”์ฒญ HTML ํŽ˜์ด์ง€์‘๋‹ต Server Web Server Apache, IIS, IBM WebSpere, Oracle WAS TmaxSoft JEUS

More information

10X56_NWG_KOR.indd

10X56_NWG_KOR.indd ๋””์ง€ํ„ธ ํ”„๋กœ์ ํ„ฐ X56 ๋„คํŠธ์›Œํฌ ๊ฐ€์ด๋“œ ์ด ์ œํ’ˆ์„ ๊ตฌ์ž…ํ•ด ์ฃผ์…”์„œ ๊ฐ์‚ฌํ•ฉ๋‹ˆ๋‹ค. ๋ณธ ์„ค๋ช…์„œ๋Š” ๋„คํŠธ์›Œํฌ ๊ธฐ๋Šฅ ๋งŒ์„ ์„ค๋ช…ํ•˜๊ธฐ ์œ„ํ•œ ๊ฒƒ์ž…๋‹ˆ๋‹ค. ๋ณธ ์ œํ’ˆ์„ ์˜ฌ๋ฐ”๋ฅด๊ฒŒ ์‚ฌ ์šฉํ•˜๋ ค๋ฉด ์ด ์ทจ๊ธ‰์ ˆ๋ช…์ €์™€ ๋ณธ ์ œํ’ˆ์˜ ๋‹ค๋ฅธ ์ทจ๊ธ‰์ ˆ๋ช…์ €๋ฅผ ์ฐธ์กฐํ•˜์‹œ๊ธฐ ๋ฐ”๋ž๋‹ˆ๋‹ค. ์ค‘์š”ํ•œ ์ฃผ์˜์‚ฌํ•ญ ์ด ์ œํ’ˆ์„ ์‚ฌ์šฉํ•˜๊ธฐ ์ „์— ๋จผ์ € ์ด ์ œํ’ˆ์— ๋Œ€ํ•œ ๋ชจ๋“  ์„ค๋ช…์„œ๋ฅผ ์ž˜ ์ฝ์–ด ๋ณด์‹ญ์‹œ์˜ค. ์ฝ์€ ๋’ค์—๋Š” ๋‚˜์ค‘์— ํ•„์š”ํ•  ๋•Œ

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

FileMaker ODBC and JDBC Guide

FileMaker ODBC and JDBC Guide FileMaker 14 5 5 5 5 6 6 6 7 7 7 8 8 8 9 9 10 10 11 11 12 12 12 12 12 13 13 14 15 16 17 18 18 19 19 20 20 20 21 21 21 22 22 22 22 23 24 24 24 24 25 27 27 28 29 29 29 29 30 30 31 31 31 32 1 1 1 1 1 1 1

More information

ๆญฏPLSQL10.PDF

ๆญฏPLSQL10.PDF 10 - SQL*Pl u s Pl / SQL - SQL*P lus 10-1 1 0.1 PL/ SQL SQL*Pl u s. SQL*P lus 10-2 1 0.2 S QL* Pl u s PL/ S QL SQL*Pl u s, Pl / SQL. - PL/ SQL (i npu t ), (s t or e ), (r un). - PL/ SQL s cr i pt,,. -

More information

50 50 50 64 20 1 047 14 65 1 000 30 40 65 4

50 50 50 64 20 1 047 14 65 1 000 30 40 65 4 The Next Plan 50 50 50 64 20 1 047 14 65 1 000 30 40 65 4 50 50 42 9 38 5 42 3 50 50 4 5 4 50 50 6 50 50 50 50 1 4 4 50 4 8 7 4 4 4 8 SAM Start Again Mentoring 50 50 SAM 50 1 50 2 5 8 5 3 SAM 50 2 9 50

More information

04-๋‹ค์‹œ_๊ณ ์†์ฒ ๋„61~80p

04-๋‹ค์‹œ_๊ณ ์†์ฒ ๋„61~80p Approach for Value Improvement to Increase High-speed Railway Speed An effective way to develop a highly competitive system is to create a new market place that can create new values. Creating tools and

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

Chap12

Chap12 12 12Java RMI 121 RMI 2 121 RMI 3 - RMI, CORBA 121 RMI RMI RMI (remote object) 4 - ( ) UnicastRemoteObject, 121 RMI 5 class A - class B - ( ) class A a() class Bb() 121 RMI 6 RMI / 121 RMI RMI 1 2 ( 7)

More information

SWยนรฉยผล-ยณยฏยฐยณร†รทร‡ร”ร‡ยฅรรถ2013

SWยนรฉยผล-ยณยฏยฐยณร†รทร‡ร”ร‡ยฅรรถ2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING

More information

์ œ๋ชฉ

์ œ๋ชฉ Object-Oriented Design Agile for Software Development Story 4. ์ž‘ ์„ฑ ์ž : ๊ณ ํ˜•ํ˜ธ ๋ฉ” ์ผ : hyungho.ko@gmail.com ํ™ˆํŽ˜์ด์ง€ : ์ตœ์ดˆ์ž‘์„ฑ์ผ : 2007.06.12 ์ตœ์ข…์ž‘์„ฑ์ผ : 2007.08.31 1 2 Goal Flexibility & Reusability Content 1. Flexibility

More information

Intro to Servlet, EJB, JSP, WS

Intro to Servlet, EJB, JSP, WS ! Introduction to J2EE (2) - EJB, Web Services J2EE iseminar.. 1544-3355 ( ) iseminar Chat. 1 Who Are We? Business Solutions Consultant Oracle Application Server 10g Business Solutions Consultant Oracle10g

More information

(SW3704) Gingerbread Source Build & Working Guide

(SW3704) Gingerbread Source Build & Working Guide (Mango-M32F4) Test Guide http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys CRZ Technology 1 Document History

More information