나.이.만.나도 이제 만날래! 셀소 방식의 신개념 파티앱이에요 당신의 인연. 더 이상 미룰 수 없어요!!!! 셀프 소개팅, 미팅룸을 열고 참여하여 내 인연을 스스로 만들어가요. 내가 선택한 장소에서 직접 파티 룸을 열어 셀 vlm-naiman.tistory.com 1. 권한 2. 판매자 계정설정 3. 프로필 작성 3. 지불방법 설정 설정후 아래와 같이 확인할 수 있다 위를 다 했다면 다음단계는 아래와 같다 구글 플레이콘솔에서 아래의 액세스 권한을 얻자 새서비스 계정 만들기를 클릭한다 Oauth와 연결시켰다. OAuth 클라이언트 ID를 만든다 그런데 위과정은 파이어베이스랑 연결이 되어있어서 그런지 잘 진행이 안됐다... 이미 있다고 함 아래 부분은 다음번에 하도록하자.
def checkforSimpleFunctional(p:Int, q:Int, test : (Int, Int) => Double) = test(p, q) println(checkforSimpleFunctional(2, 3, (a:Int, b:Int) => a + b))
fun checkforSimpleFunctional(p:Int, q:Int, test : (Int, Int) -> Double):Double{ return test(p, q) } println(checkforSimpleFunctional(2, 3){ a, b -> (a + b).toDouble() })
docs.scala-lang.org/tour/generic-classes.html Generic Classes Generic classes are classes which take a type as a parameter. They are particularly useful for collection classes. Defining a generic class Generic classes take a type as a parameter within square brackets []. One convention is to use the letter A as type docs.scala-lang.org 위 사이트를 참고 하였음(제네릭의 기본적인 개념은 JAVA(witcheryoon.tistory.com/158..
Wildcards 제네릭 코드에서는 wildcard로 불리는 question mark ?로 알 수 없는 타입(unKnown Type)을 표현한다. 사용이 되는 부분과 안되는 부분은 실제 사용을 해보면서 익혀야한다. 다양한 곳에서 사용가능하다. ( In generic code, the question mark (?), called the wildcard, represents an unknown type. The wildcard can be used in a variety of situations: as the type of a parameter, field, or local variable; sometimes as a return type (though it is better programming prac..
docs.oracle.com/javase/tutorial/java/generics/index.html Lesson: Generics (Updated) (The Java™ Tutorials > Learning the Java Language) The Java Tutorials have been written for JDK 8. Examples and practices described in this page don't take advantage of improvements introduced in later releases and might use technology no longer available. See Java Language Changes for a summary of updated docs.o..