找到 2628 篇文章 关于 C#
211 次查看
要查找 Stack 类中添加了多少个元素,需要使用 Count 属性。 让我们首先在 Stack 中添加元素 - Stack st = new Stack(); st.Push('H'); st.Push('I'); st.Push('J'); st.Push('K'); st.Push('L'); st.Push('M'); st.Push('N'); st.Push('O'); 现在计算 Stack 中的元素数量 - Console.WriteLine("Count: "+st.Count); 让我们看看完整的代码 - 示例 Live Demo using System; using System.Collections; namespace Demo { class Program { static void Main(string[] args) { Stack st = new Stack(); st.Push('H'); st.Push('I'); st.Push('J'); ... 阅读更多
106 次查看
使用 Count 属性查找 Queue 类中元素的数量。 设置元素,如下面的声明 - Queue q = new Queue(); q.Enqueue(1); q.Enqueue(2); q.Enqueue(3); q.Enqueue(4); 然后使用 Count 属性计算元素 - q.Count 以下是一个示例,展示了如何在 Queue 类中使用 Count 属性 - 示例 Live Demo using System; using System.Collections; namespace Demo { class Program { static void Main(string[] args) { Queue q = new Queue(); q.Enqueue(1); q.Enqueue(2); q.Enqueue(3); q.Enqueue(4); Console.WriteLine("Total elements: {0} ", q.Count); Console.ReadKey(); } } } 输出 总元素数:4
91 次查看
要查找 Hashtable 类中元素的数量,请使用 Count 属性。 首先,使用元素设置 Hashtable 类 - Hashtable ht = new Hashtable(); ht.Add("One", "Tom"); ht.Add("Two", "Jack"); ht.Add("Three", "Peter"); ht.Add("Four", "Russel"); ht.Add("Five", "Brad"); ht.Add("Six", "Bradley"); ht.Add("Seven", "Steve"); ht.Add("Eight", "David"); 现在,使用 Count 属性计算元素数量 - ht.Count 以下是一个完整的示例,用于学习如何在 C# 中使用 Hashtable Count 属性。 示例 Live Demo using System; using System.Collections; namespace Demo { class Program { static void Main(string[] args) { Hashtable ht = new Hashtable(); ... 阅读更多
95 次查看
使用 Count 属性计算 BitArray 类中元素的数量。 让我们首先设置我们的 BitArray 类 - BitArray arr = new BitArray(10); 现在使用 Count 属性,如下所示 - 示例 Live Demo using System; using System.Collections; public class Demo { public static void Main() { BitArray arr = new BitArray(10); Console.WriteLine( "Count: {0}", arr.Count ); } } 输出 Count: 10
240 次查看
SortedList 类中的 Capacity 属性具有 SortedList 的最大大小。 SortedList 的默认容量为 16。 可以尝试运行以下代码以在 C# 中实现 SortedList 类的 Capacity 属性 - 示例 Live Demo using System; using System.Collections; namespace Demo { class Program { static void Main(string[] args) { SortedList s = new SortedList(); s.Add("S1", "Maths"); s.Add("S2", "Science"); s.Add("S3", "English"); s.Add("S4", "Economics"); Console.WriteLine("Capacity = " ... 阅读更多
230 次查看
ArrayList 类中的 Count 属性计算 ArrayList 中元素的数量。 首先,将元素添加到 ArrayList - ArrayList arrList = new ArrayList(); arrList.Add(98); arrList.Add(55); arrList.Add(65); arrList.Add(34); 然后获取数组列表的数量 - arrList.Count 以下是在 C# 中实现 Count 属性的代码 - 示例 Live Demo using System; using System.Collections; class Demo { public static void Main() { ArrayList arrList = new ArrayList(); arrList.Add(98); arrList.Add(55); arrList.Add(65); arrList.Add(34); Console.WriteLine("Count = " + arrList.Count); } } 输出 Count = 4
3K+ 次查看
ArrayList 类中的 Capacity 属性获取或设置 ArrayList 可以包含的元素数。 Capacity 始终大于 Count。 对于 Capacity 属性 - arrList.Capacity 默认容量为 4。 如果有 5 个元素,则其容量加倍,为 8。 如此循环往复。 可以尝试运行以下代码以在 C# 中实现 Capacity 属性。 这也显示了我们上面讨论的内容 - 示例 Live Demo using System; using System.Collections; class Demo { public static void Main() { ArrayList arrList = new ArrayList(); arrList.Add(19); arrList.Add(44); ... 阅读更多
711 次查看
要查找数组的维数,请使用 Rank 属性。 arr.Rank 在这里,arr 是我们的数组 - int[, ] arr = new int[3, 4]; 如果还想获取它具有的行和列,则使用 GetLength 属性 - arr.GetLength(0); arr.GetLength(1); 以下为完整代码 - 示例 Live Demo using System; class Program { static void Main() { int[, ] arr = new int[3, 4]; Console.WriteLine(arr.GetLength(0)); Console.WriteLine(arr.GetLength(1)); // 长度 Console.WriteLine(arr.Length); Console.WriteLine("Upper Bound: {0}", arr.GetUpperBound(0).ToString()); Console.WriteLine("Lower Bound: ... 阅读更多
17K+ 次查看
要查找数组的长度,请使用 Array.Length() 方法。 示例 让我们看看一个示例 - Live Demo using System; class Program { static void Main(){ int[] arr = new int[10]; // 查找长度 int arrLength = arr.Length; Console.WriteLine("Length of the array: "+arrLength); } } 输出 数组的长度:10 上面,我们有一个数组 - int[] arr = new int[10]; 现在要查找长度,我们使用了 Length() 方法 - int arrLength = arr.Length;
262 次查看
sizeof() 数据类型返回数据类型的尺寸。假设您需要查找 int 数据类型的尺寸:sizeof(int);对于 double 数据类型:sizeof(double);让我们来看一个完整的示例,以查找各种数据类型的尺寸:示例 在线演示使用 System; 命名空间 Demo { 类 Program { static void Main(string[] args) { Console.WriteLine("int 的尺寸为 {0}", sizeof(int)); Console.WriteLine("char 的尺寸为 {0}", sizeof(char)); Console.WriteLine("short 的尺寸为 {0}", sizeof(short)); Console.WriteLine("long 的尺寸为 ... 阅读更多