| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 웹 서비스
- Redirect
- 웹뷰
- TextBox
- html
- MSsql
- SpringSource Tool Suite
- Android
- 이클립스
- Maven
- Bootstrap
- Apache Lucene
- asp.net
- WebView
- 안드로이드
- MS-SQL
- decompiler
- 컬럼명
- javascript
- scrollView
- MANTIS
- STS
- Eclipse
- 자바스크립트
- Java
- 자바
- jsp
- Web Service
- C#
- varags
- Today
- Total
목록2011/02 (5)
bboks.net™
숫자함수 ABS ABS함수는 절대값을 나타낸다. 형식: ABS(숫자값) POWER POWER함수는 제곱근을 표현해 준다. 형식: POWER(숫자값, 승수값) SQRT SQRT는 루트값을 표현해준다. 형식: SQRT(숫자값) RAND RAND는 0 에서 1사이의 난수를 발생시킨다. 형식: RAND(초기값) ROUND ROUND는 반올림 함수이다. 형식: ROUND(숫자, 자릿수) ROUND는 자릿수만 조심하면 된다. 2번째 결과는 8을 반올림하여 그 앞의 9에 1이 더해진것이고 3번째 결과는 9가 반올림된것이다. CEILING, FLOOR CEILING은 소수점 첫번째 값을 기준으로 올림을 하고 FLOOR는 소수점 첫번째 값을 기준으로 내림을 한다. 형식: CEILING(숫자) ... FLOOR도 동일 C..
http://www.chris-edwards.org/340/docs/SRS/node11.html http://socialtapestries.net/snout/documentation/node83.html http://webmaker.web.cern.ch/WebMaker/UserReq/Section-2-1.html
Context Diagram A DFD (Data Flow Diagram) that summarizes all processing activity within the system in single process sysbol. Describes highest level view of a system All external agents and all data flows into and out of a system are shown in the diagram The whole system is represented as one process The data flows that pass between the external entities and the system DFD (Data Flow Diagram) A..
Java provides a mechanism for creating copies of objects called cloning. There are two ways to make a copy of an object called shallow copy and deep copy. Shallow copy is a bit-wise copy of an object. A new object is created that has an exact copy of the values in the original object. If any of the fields of the object are references to other objects, just the references are copied. Thus, if the..