코딩Coding
-
Method메소드코딩Coding/C#_용어 2020. 5. 14. 17:48
A method is a set of code which is referred to by name and can be called (invoked) at any point in a program simply by utilizing the method's name. Think of a method as a subprogram that acts on data and often returns a value. Each method has its own name.
-
Pointer포인터형식코딩Coding/C#_용어 2020. 5. 14. 17:18
In computer science, a pointer is a programming language object that stores a memory address. ... A pointer references a location in memory, and obtaining the value stored at that location is known as dereferencing the pointer. https://www.google.com/search?q=pointer%20codepointer code - Google 검색Some C programming tasks are performed more easily with pointers, and ... When the above code is com..
-
대리자C#[delegates]코딩Coding/C#_용어 2020. 5. 14. 17:05
대리자(C# 프로그래밍 가이드) https://docs.microsoft.com/ko-kr/dotnet/csharp/programming-guide/delegates/ A delegate in C# is similar to a function pointer in C or C++. Using a delegate allows the programmer to encapsulate a reference to a method inside a delegate object. The delegate object can then be passed to code which can call the referenced method, without having to know at compile time which method ..
-
DTD(Document Type Definition)과 DCD(Document content description)코딩Coding/Mojo★Python용어 2020. 5. 14. 13:13
DTD와 DCD에 대해서 알아라 XML을 시작하기 위해서는 우선 두 가지에 대해서 알아야 한다. DTD(Document Type Definition)과 DCD(Document content description)이 그것인데 이 두 가지를 기반으로 다른 것들을 배워나가야 한다. DTD와 DCD는 XML이 여러 태그를 비롯해 그 태그와 관련된 데이터를 어떤 식으로 해석해야 하는지를 알려주는 역할을 한다. IBM과 Microsoft에서는 DCD를 DTD의 후계자로 정의하고 있다. DCD는 entity declaration과 datatyping에 대한 지원을 포함한다. DTD를 쉽게 이해하기 위해서(가끔 schema로 잘못 불려지기도 한다) 스프레드시트나 데이터베이스를 연상해보자. DTD는 레코드나 줄이 포함하..