找到 2628 篇文章 关于 C#
600 次查看
创建新线程。Thread thread = Thread.CurrentThread; thread.Name = "My new Thread"; 要获取当前上下文 ID,请使用 ContextID 属性。Thread.CurrentContext.ContextID 让我们看看完整的代码 - 示例 在线演示using System; using System.Threading; namespace Demo { class MyClass { static void Main(string[] args) { Thread thread = Thread.CurrentThread; thread.Name = "My new Thread"; Console.WriteLine("线程名称 = {0}", thread.Name); Console.WriteLine("当前上下文 ID:{0}", Thread.CurrentContext.ContextID); Console.ReadKey(); } } }输出线程名称 = My new Thread 当前上下文 ID:0
1K+ 次查看
创建一个使用递归获取第 n 个值的方法。public int displayFibonacci(int n) 调用该方法 -displayFibonacci(val) 调用时,displayFibonacci() 方法会被调用并使用递归计算第 n 个值。public int displayFibonacci(int n) { if (n == 0) { return 0; } if (n == 1) { return 1; } else { return displayFibonacci(n - 1) + displayFibonacci(n - 2); } }让我们看看完整的代码 - 示例 在线演示using System; public class Demo { public static void Main(string[] args) { Demo d = ... 阅读更多
2K+ 次查看
要找到两个二进制数的和,首先设置它们。val1 = 11110; val2 = 11100; 现在调用 displaySum() 方法,该方法用于显示总和 L。sum = displaySum(val1, val2); 我们在方法中设置了一个新数组来显示二进制数的每一位。long[] sum = new long[30]; 现在让我们看看计算二进制数之和的完整代码,如下面的代码所示 - 示例 在线演示using System; class Demo { public static void Main(string[] args) { long val1, val2, sum = 0; val1 = 11110; val2 ... 阅读更多
674 次查看
要查找字符串中每个单词的频率,您可以尝试运行以下代码 - 示例 在线演示using System; class Demo { static int maxCHARS = 256; static void calculate(String s, int[] cal) { for (int i = 0; i < s.Length; i++) cal[s[i]]++; } public static void Main() { String s = "Football!"; int []cal = new int[maxCHARS]; calculate(s, cal); for (int i = 0; i < maxCHARS; i++) if(cal[i] > ... 阅读更多
2K+ 次查看
要获取变量的大小,可以使用 sizeof。int x; x = sizeof(int); 要获取变量的大小,而不使用 sizeof,请尝试以下代码 -// 不使用 sizeof byte[] dataBytes = BitConverter.GetBytes(x); int d = dataBytes.Length; 这是完整的代码。示例 在线演示using System; class Demo { public static void Main() { int x; // 使用 sizeof x = sizeof(int); Console.WriteLine(x); // 不使用 sizeof byte[] dataBytes = BitConverter.GetBytes(x); int d = dataBytes.Length; Console.WriteLine(d); } }输出4 4
10K+ 次查看
在 C# 中,使用 readonly 声明常量数组。public static readonly string[] a = { "Car", "Motorbike", "Cab" }; 在 readonly 中,您可以在运行时设置值,这与 const 不同。实现上述内容的另一种方法 -public ReadOnlyCollection a { get { return new List { "Car", "Motorbike", "Cab" }.AsReadOnly();}} .NET framework 4.5 对我们看到的内容进行了改进 -public ReadOnlyCollection a { get; } = new ReadOnlyCollection( new string[] { "Car", "Motorbike", "Cab" } );
215 次查看
要判断一个数字是否能被 2 整除,请检查数字被 2 整除时会发生什么。如果余数为 0,则该数字能被 2 整除,否则为假 -if (num % 2 == 0) { Console.WriteLine("能被 2 整除"); } else { Console.WriteLine("不能被 2 整除"); } 以下是完整的代码 - 示例 在线演示using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo { class Test { static void Main(string[] args) { int num; num = 18; ... 阅读更多
884 次查看
假设我们的字符串为 -String s = "HeathLedger!"; 现在创建一个新数组。int []cal = new int[maxCHARS]; 创建一个新方法并将字符串和新数组都传递给它。查找字符的最大出现次数。static void calculate(String s, int[] cal) { for (int i = 0; i < s.Length; i++) cal[s[i]]++; } 让我们看看完整的代码 - 示例 在线演示using System; class Demo { static int maxCHARS = 256; static void calculate(String s, int[] cal) { for (int i = 0; i < s.Length; i++) cal[s[i]]++; } ... 阅读更多
3K+ 次查看
声明并初始化一个列表。var products = new List (); products.Add("Accessories"); products.Add("Clothing"); products.Add("Footwear"); 要获取大小,请使用 Capacity 属性。products.Capacity 现在让我们看看查找列表大小的完整代码。示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(string[] args) { var products = new List (); products.Add("Accessories"); products.Add("Clothing"); products.Add("Footwear"); Console.WriteLine("我们的列表...."); foreach(var p in products) { Console.WriteLine(p); } Console.WriteLine("列表的大小 = " + products.Capacity); } }输出我们的列表.... Accessories Clothing Footwear 列表的大小 = 4
273 次查看
对于球体的体积和表面积,首先声明一个变量,其值为半径。int r = 15;获取球体的体积。// 计算球体的体积 cal_volume = (4.0 / 3) * (22 / 7) * r * r * r;现在计算球体的表面积 - cal_area = 4 * (22 / 7) * r * r;让我们看看完整的代码 -示例 实时演示using System; using System.Collections.Generic; public class Demo { public static void Main(string[] args) { double cal_area, cal_volume, r; // 半径 ... 阅读更多