Notice
Recent Posts
Recent Comments
Link
투케이2K
42. (C#/NET) [Mac Os] [문법] 생성자 지정 struct 구조체 생성 및 정보 출력 수행 본문
[개발 환경 설정]
개발 언어 : C# / NET
[소스 코드]
using System;
using System.Collections;
namespace testProject {
// [구조체 생성]
public struct UserStruct{
public string name;
public int age;
// [생성자 지정]
public UserStruct(string name, int age){
this.name = name;
this.age = age;
}
// [포맷 출력 메소드 정의]
public string getInfo(){
return $"이름 : {name} / 나이 : {age}";
}
}
// [프로그램 동작 클래스]
class Program {
static void Main(string[] args){
/*
-------------------------------------------
[요약 설명]
-------------------------------------------
1. Struct (구조체) : 데이터와 관련 기능을 캡슐화할 수 있는 값 형식입니다
-------------------------------------------
2. 구조체 형식은 struct 키워드를 사용하여 정의합니다
-------------------------------------------
3. 구조체는 상속이 불가능합니다
-------------------------------------------
*/
// [구조체 생성]
UserStruct userStruct = new UserStruct("투케이", 30);
// [구조체 정보 확인]
string result = userStruct.getInfo();
// [로그 출력 수행]
Console.WriteLine($"");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"[Main] : [Log]");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"result : {result}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"");
}
}
}
[결과 출력]
반응형
'C샵 (NET)' 카테고리의 다른 글
Comments