코딩Coding/Rust용어
-
Rust용어)Type annotation코딩Coding/Rust용어 2022. 2. 4. 08:55
Type annotation http://gradebot.org/doc/ipur/function.html#type-annotation Functions - Introduction to Programming Using Rust A function takes zero or more input values and optionally returns an output value. By convention, we call the input values parameters in the callee, and arguments in the caller. # #![allow(unused_variables)] #fn main() { fn foo() { } fn bar(x: i32, y: &str gradebot.org
-
(용어) instance, instantiate- 개념코딩Coding/Rust용어 2021. 12. 23. 18:45
유니티에서의 인스턴스화 개념 https://angliss.cc/instantiate/ (유니티) 인스턴스화 Instantiate – 앤글 블로그 인스턴스화? 유니티에서의 인스턴스( instance )는 이미 만들어진 게임 오브젝트를 필요할 때마다 실시간으로 만든다는 의미입니다. 보통 총알이나 몬스터를 찍어낼 때 사용합니다. 나루토가 사용 angliss.cc 자바에서 이야기 하는 instance https://m.blog.naver.com/jysaa5/221768848057 [용어] instance, instantiate - 개념 instance, instantiate: 인스턴스, 인스턴스화 - 인스턴스는 추상화 개념 또는 클래스 객체, 컴퓨터 프로세... blog.naver.com http://www.t..
-
하드코딩Hard cording코딩Coding/Rust용어 2021. 12. 6. 16:02
https://namu.wiki/w/%ED%95%98%EB%93%9C%EC%BD%94%EB%94%A9 https://en.m.wikipedia.org/wiki/Hard_coding Hard coding - Wikipedia Hard coding (also hard-coding or hardcoding) is the software development practice of embedding data directly into the source code of a program or other executable object, as opposed to obtaining the data from external sources or generating it at runtime. H en.m.wikipedia.org
-
Rust용어_타입 애노테이션(Type Annotation)코딩Coding/Rust용어 2021. 5. 11. 20:17
gradebot.org/doc/ipur/function.html Functions - Introduction to Programming Using Rust A function takes zero or more input values and optionally returns an output value. By convention, we call the input values parameters in the callee, and arguments in the caller. # #![allow(unused_variables)] #fn main() { fn foo() { } fn bar(x: i32, y: &str gradebot.org
-
Rust용어)불변 변수(immutable variable) vs 가변 변수(mutable variable)코딩Coding/Rust용어 2021. 5. 9. 11:48
https://plas.tistory.com/m/132Rust는 변수가 왜 불변이라는 걸까?변수는 값이 바뀌는 것이고 상수는 값이 변하지 않는다고 배웠는데... Rust 언어의 온라인 문서(이하 Rust Book)를 읽으면서 기존의 프로그래밍 언어와 많이 달라진 개념을 하나씩 조금 다른 관점으plas.tistory.com https://www.google.com/search?q=immutable%20variableimmutable variable - Google 검색2017. 11. 13. · Most python objects (booleans, integers, floats, strings, and tuples) are immutable. This means that after you create t..