找到 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 属性 - 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); 让我们看看查找各种数据类型大小的完整示例 - 示例 Live Demo using System; namespace Demo { class Program { static void Main(string[] args) { Console.WriteLine("The size of int is {0}", sizeof(int)); Console.WriteLine("The size of int is {0}", sizeof(char)); Console.WriteLine("The size of short is {0}", sizeof(short)); Console.WriteLine("The size of long is ... 阅读更多