GithubHelp home page GithubHelp logo

til's Introduction

TIL(Today I Learned)

Daily commit.

Categories


Kotlin

NULL SAFETY - nullpointexception

  • 선언
var name (변수이름) : String? = "상원"

(컴파일러는 바로 null safety 변수에 접근할 수 없기 때문에 해제한 이후에 접근 해야 한다)

  • 강제 해제

          

    ┍ㅡㅡㅡ┑

    ㅣ name ㅣ ------------------> n a m e

    ┕ㅡㅡㅡ┙      !! 강제해제

          

    var name : String? = "상원"
    
    println(name!!) //상원
    
    
    var name : String? = null
    
    println(name!!) //에러발생
    
  • 안전 해제 1

    println(name) // 상원    /* 자동적으로
                  // null       해제되어진다 */
    
  • 안전 해제 2 (변수에 소속된 function 이나 하위 클래스에 접근하고자 할 때)

          

    ┍ㅡㅡㅡ┑

    ㅣ name ㅣ ------------------> n a m e

    ┕ㅡㅡㅡ┙        ? 해제

          

    var name : String? = "상원"
    println(name?.length) // 2
    
    var name : String? = null
    println(name?.length) // 물음표는 null을 캐치하여 에러를 발생시키지 않고 null 값만 출력한다
    
    

Algorithm

#include <iostream>
#include <ios>

using namespace std;

int main() {
   cin.tie(NULL);
   cout.tie(NULL);
   ios::sync_with_stdio(false);

   return 0;
}

DistributedSystem

  • 내용

About

Based on the TIL idea from jbranchaud/til.

til's People

Contributors

deadlockk avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.