목록전체보기 (408)
NeuroWhAI의 잡블로그
// 추상 클래스 abstract class ZeroBase { abstract fun hello() // Body 없음. } // 상속 가능 클래스 open class Base(val x: Int) : ZeroBase() { override fun hello() { // 오버라이드시 override 키워드 필수. println("Hello!") } // abstract class, interface의 요소가 아니라면 // 오버라이드가 가능하기 위해선 open 키워드가 필요. open fun test() { println("Base") } } class Derived : Base { // super(...)로 상위 클래스의 생성자 호출 가능. constructor() : super(42) construc..
ORB라는 행성 영상 제작용 어도비 애프터 이펙트 플러그인이 무료로 공개되었습니다. 다운로드 : https://www.videocopilot.net/orb/#download 튜토리얼 영상 : https://www.youtube.com/watch?v=iT12Q9O-Q30 참고 및 출처 : https://www.videocopilot.net/blog/2018/09/new-plug-in-trailer-orb
https://en.cppreference.com/w/cpp/language/operator_comparison#Three-way_comparisonhttps://en.cppreference.com/w/cpp/language/default_comparisons 비교연산자...라네요...a b 일때a b면 0보다 크다는 것을 의미하는 객체(greater)를,a == b면 0을 의미하는 객체(equivalent)를 반환한다고 합니다.왜 0보다 작은 값이면 값이지 객체냐고 물으신다면 저도 모릅니다(?)int같은 타입이 반환형이 아니고 std::strong_ordering, std::weak_ordering 등의 클래스에 정의된 상수를 반환한다고 하..
https://en.cppreference.com/w/cpp/language/class_template_argument_deduction "The syntax of a user-defined deduction guide is the syntax of a function declaration with a trailing return type, except that it uses the name of a class template as the function name""user-defined deduction guide는 템플릿 클래스를 함수 이름으로 사용한다는 것만 빼면'->'를 사용해 반환형을 명시한 함수 선언 문법입니다." 이름을 좀 더 길지만 알기 쉽게 쓰자면User-defined template a..
https://en.cppreference.com/w/cpp/language/template_argument_deduction 템플릿 인자 추론은 익숙한 문법이지만 C++17부터 기능이 더 확장되었습니다.템플릿 클래스가 객체 생성의 타입으로 사용되는 경우에도 추론이 수행되도록 말이죠!이게 무슨 말이냐... 아래 코드를 보시면 바로 이해가 되실겁니다. #include using namespace std; template class Foo { public: Foo(const T& data) : data(data) { } T data; }; int main() { Foo a = 42; auto f = Foo{ a.data }; cout
초기 속보들http://www.yonhapnews.co.kr/bulletin/2018/09/08/0200000000AKR20180908041400017.HTML?input=1195mhttps://news.joins.com/article/22953557http://news.kbs.co.kr/news/view.do?ncd=4035881&ref=A 속보에 따르면 9월 7일 쿠웨이트에서 귀국한 61세 남성이 8일 16시경 메르스 확진 판정을 받았다고 합니다.인천공항으로 귀국했으며 서울에 거주하는 것으로 알려졌으나 귀국 후 동선은 아직 밝혀진 바가 없습니다.현재 서울대병원에서 격리치료를 받고 계시다고 하네요.정확한 소식은 더 기다려야 하겠습니다. 또한 오늘(8일) 19시 30분 질병관리본부는 정부 서울청사에서 관..
https://play.google.com/store/apps/details?id=com.rayark.cytus2 9/7~9/9 기간동안 레이아크 7주년 기념으로 무료로 다운로드가 가능합니다.평가가 안좋아서 돈 주고 해보긴 아까우니 못해봤는데 좋은 기회네요 ㅎ
https://en.cppreference.com/w/cpp/language/fold #include using namespace std; template int binaryRightFold(TArgs&&... args) { return (args - ... - 10); } template int binaryLeftFold(TArgs&&... args) { return (10 - ... - args); } int main() { cout
https://www.youtube.com/watch?v=5i-tdqPmB1U https://www.youtube.com/watch?v=aKUcDScYVsY https://www.youtube.com/watch?v=eWKJUmrpq6U 무슨 지진난거 마냥 부서지고 떨어지고;; 현재 일본에 계신 한국인들도 많을텐데 지인들이 걱정이 이만저만이 아니겠습니다. 제비는 곧 약화되겠지만 그때까지 긴장을 늦추면 안되겠습니다. + 제비는 소멸했지만 정말 많은 피해를 남겼고 최대 진도 7의 지진이 홋카이도에서 발생하면서 피해가 상당할 듯 싶습니다.