01. 함수 정의 // [A]는 형식 매개변수 def findFirst[A](ar:Array[A], p:A=>Boolean):Int = { def loop(n:Int):Int = if (n >= ar.length) -1else if ( p(ar(n)) ) nelse loop(n+1) loop(0)} 02. 함수 사용 val ar:Array[String] = new Array[String](3) ar(0) = "banana"ar(1) = "apple"ar(2) = "mango" findFirst(ar, (x:String) => x == "apple") ==> apple이 2번째 요소임으로 1이 리턴 됨.
JNI OverviewIn this module, we’ll explore the following topics:JNI ComponentsJNI By ExampleNative Method ArgumentsPrimitive Type MappingReference Type MappingGlobal and Local ReferencesUsing StringsArraysReflectionRegistering Native Methods On LoadExceptionsJNI: What it is and why you’d careJNI is an interface that allows Java to interact with code written in another languageMotivation for JNI:A..
public static String clobToString(CLOB clob) throws Exception { StringBuffer s = new StringBuffer(); BufferedReader br = new BufferedReader(clob.getCharacterStream()); String ts = ""; while((ts = br.readLine()) != null) { s.append(ts + "\n"); } br.close(); return s.toString(); }
자바에서 long, double 로 조단위가 넘는 숫자의 사칙연산시 결과가 이상하게 나올때가 있습니다. 그래서 조단위가 넘는 경우엔 long, double 대서 BigDecimal 형을 사용하면 문제가 해결됩니다. long -> BigInteger double -> BigDouble ex) BigInteger bInt = new BigInteger("0"); bInt = bInt.add(new BigInteger("3222222222222")); bInt = bInt.add(new BigInteger("2322222222223")); System.out.println("res = " + bInt.longValue());
- Total
- Today
- Yesterday
- 르세라핌
- 증권정보포털
- VARIDESK
- 매직 트랙패드2
- JMW 헤어드라이기기
- 오미크론
- 홈 오피스
- 빈센트 반 고흐
- 파나소닉 비데 DL-EH10KWS
- 남설 팔찌
- 별잉 빛나는 밤
- Pixel Pals
- 루미큐브 종류
- 배당급
- 톡토기
- 솔리드 쿨론
- 고체 향수
- 유가바이트디비
- weka
- 화분벌레
- 카카오 에드
- 별이 빚나는 밤
- node.js
- 코라나 19
- GKRS
- Sybase IQ
- 브리다 정수기
- yugabyteDB
- Life Chair
- 로니카 BCS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |