-
Scala도 다른 JVM언어와 마찬가지로 런타임에 타입을 소거
- 컴파일시에는 가능한 타입 정보에 대한 접근이 런타임에는 불가능
-
Scala.reflect.Manifest
,TypeTags
: 컴파일타임에 접근 가능한 타입 정보를 런타임에 전달TypeTag[T]
는 컴파일 타임의 타입T
의 런타임 타입 표현을 캡슐화.TypeTag
는, 2.10 이하 버전에서 사용되었던, 더 많은 기능을 내포한Manifest
의 대안이며, Scala reflection에 통합됨
sealed trait NaturalNumber | |
sealed trait _0 extends NaturalNumber | |
sealed trait _1 extends _0 | |
sealed trait _2 extends _1 | |
sealed trait _3 extends _2 | |
sealed trait _4 extends _3 | |
sealed trait _5 extends _4 | |
sealed trait _6 extends _5 | |
sealed trait _7 extends _6 | |
sealed trait _8 extends _7 |
import os | |
import subprocess | |
import multiprocessing | |
def q_runner(n_procs, list_item, function, *args): | |
'''generic function used to start worker processes''' | |
task_queue = multiprocessing.Queue() | |
results_queue = multiprocessing.JoinableQueue() | |
if args: | |
arguments = (task_queue, results_queue,) + args |
val thumbnails = ArrayList<String>() | |
thumbnails.add("http://www.hotel-r.net/im/hotel/pl/hotel-simple-1.jpg") | |
thumbnails.add("https://media-cdn.tripadvisor.com/media/photo-s/0e/20/6a/59/simple-patagonia-hotel.jpg") | |
thumbnails.add("https://mir-s3-cdn-cf.behance.net/project_modules/disp/65daa813704049.5627720c3ae61.jpg") | |
thumbnails.add("http://www.hotel-r.net/im/hotel/lt/hotel-simple-12.jpg") | |
thumbnails.add("https://images.trvl-media.com/hotels/7000000/6450000/6441600/6441512/6441512_56_z.jpg") | |
thumbnails.add("http://interiii.com/wp-content/uploads/2013/03/Latest-Caro-Hotel-Design-by-Francesc-Rif%C3%A9-Studio-Decoration-Ideas1.jpg") | |
thumbnails.add("https://media-cdn.tripadvisor.com/media/photo-s/05/07/33/ba/smart-and-simple-hotel.jpg") | |
thumbnails.add("https://c1.hiqcdn.com/images/property/resortimg/431680_w85.jpg") | |
thumbnails.add("https://www.cabinn.com/sites/default/files/CabInn_Aalborg_029_0.jpg") |
Apple will reject apps that are using private url schemes (Ugh, Apple....) if they are pretty much obvius. Some apps are rejected and others are not, so, be aware of this issue before implementing any of those URL's in your app as a feature.
- [UPDATE 4] iOS 10 update: apparently settings now can be reached using App-Pref instead of prefs
[UPDATE 3] For now you just can use url schemes to open your apps's settings with Swift 3.0 (Xcode 8). I'll keep you informed when OS preferences can be reached[UPDATE 2] The openURL() method of UIApplication is now deprecated. You should use application(_:open:options:) instead[UPDATE 1] Not yet tested in iOS 10. It will fail because of policies changes in URL scheme handling.
Author: Chris Lattner
#Compilng You need g++ 4.9 to compile this code. Follow these steps to install g++-4.9
After installing run the following command to compile
/usr/bin/g++-4.9 -std=c++11 lambda.cpp
#Running
./a.out
- 원문: http://www.nurkiewicz.com/2016/06/functor-and-monad-examples-in-plain-java.html
- 작성자: Tomasz Nurkiewicz
이 글은 우리가 쓴 책, 'Reactive Programming with RxJava' 의 부록이었다. Reactive programming과 관련이 깊은 주제긴 하지만 모나드를 소개한다는 게 책과 썩 어울리지는 않았다. 그래서 나는 따로 블로그에 올리기로 했다. 프로그래밍을 다루는 블로그에서 *"반은 맞고 반은 틀릴 지 모르는 나만의 모나드 설명"*이란 것이 새로운 *"Hello World"*라는 점을 나도 잘 안다. 하지만 이 글은 펑터(functor)와 모나드(monad)를 자바 자료 구조와 라이브러리라는 각도에서 바라보고 있으며, 이는 공유할 정도의 가치는 있을거라 생각했다.
2014년 8월1일 제9회 오픈 세미나 in 대구 행사에서 한 발표입니다.
안녕하세요, 네이버랩스 웹플랫폼개발랩의 정상혁입니다. 오늘 발표에서는 테스트 프레임워크인 Robolectric을 사용하면서 실무에서 얻었던 경험을 공유하고자합니다.
먼저 테스트코드란 무엇인지와 안드로이드에서 테스트 작성을 어렵게 하는 난관등을 말씀드리고 Robolectric을 활용하는 방법을 소개하겠습니다.
참석하신 분 중에서 JUnit(제이유닛)에 대해서 한번이라도 들어보신 분은 손을 들어보시겠습니까? 이중에 Junit을 실제로 써보신분은 얼마나 되시나요? Android에서 JUnit으로 테스트를 시도해보신 분은 계신가요? 경험을 하신 정도가 다양하기 때문에 우선 오늘 다룰 테스트 코드란 무엇인지를 한번 정리하고 시작을 하겠습니다.
package com.blogspot.ksoichiro.linktest; | |
import android.text.Layout; | |
import android.text.Spannable; | |
import android.text.SpannableString; | |
import android.text.Spanned; | |
import android.text.TextUtils; | |
import android.text.method.LinkMovementMethod; | |
import android.text.style.ClickableSpan; |