using System;struct Books {private string title;private string author;private string subject;private int book_id;
编程学习网为您整理以下代码实例,主要实现:C#类与结构,希望可以帮到各位朋友。
using System;
struct Books {
private string Title;
private string author;
private string subject;
private int book_ID;
public voID getValues(string t, string a, string s, int ID) {
Title = t;
author = a;
subject = s;
book_ID = ID;
}
public voID display() {
Console.Writeline("Title : {0}", Title);
Console.Writeline("Author : {0}", author);
Console.Writeline("Subject : {0}", subject);
Console.Writeline("Book_ID :{0}", book_ID);
}
};
public class testStructure {
public static voID Main(string[] args) {
Books Book1 = new Books(); /* Declare Book1 of type Book */
Books Book2 = new Books(); /* Declare Book2 of type Book */
/* book 1 specification */
Book1.getValues("C Programming",
"Nuha Ali", "C Programming Tutorial",6495407);
/* book 2 specification */
Book2.getValues("Telecom Billing",
"Zara Ali", "Telecom Billing Tutorial", 6495700);
/* print Book1 info */
Book1.display();
/* print Book2 info */
Book2.display();
Console.ReadKey();
}
}
沃梦达教程
本文标题为:C#类与结构
猜你喜欢
- C#基本语法 1970-01-01
- C# break语句 1970-01-01
- C#使用递归来计算阶乘 1970-01-01
- C#使用string.concat来连接字符串 1970-01-01
- C#将十进制转换为八进制数 1970-01-01
- C#主线程 1970-01-01
- C#检查字符串是否包含特殊字符 1970-01-01
- C#调用方法示例2 1970-01-01
- C#嵌套switch语句 1970-01-01
- C#抽象和虚拟类 1970-01-01