找到 2628 篇文章 关于 C#

如何从 MySQL 列中获取最大值?

AmitDiwan
更新于 2019年12月11日 11:49:37

161 次浏览

让我们首先创建一个表 - mysql> create table DemoTable -> ( -> Value int -> ); Query OK, 0 rows affected (0.63 sec) 使用 insert 命令在表中插入一些记录 - mysql> insert into DemoTable values(78); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values(89); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values(98); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values(58); Query OK, 1 row affected (0.25 sec) 使用 select 语句显示表中的所有记录 - mysql> select *from DemoTable; 这将产生以下输出 ... 阅读更多

在 MySQL 中使用 ORDER BY rand() 并保持分组?

AmitDiwan
更新于 2019年12月11日 11:48:38

188 次浏览

让我们首先创建一个表 - mysql> create table DemoTable -> ( -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentMarks int -> ); Query OK, 0 rows affected (0.58 sec) 使用 insert 命令在表中插入一些记录。我们还插入了重复记录 - mysql> insert into DemoTable(StudentMarks) values(98); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable(StudentMarks) values(98); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable(StudentMarks) values(78); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable(StudentMarks) values(78); Query OK, 1 row affected (0.29 sec) mysql> insert ... 阅读更多

如何在 MySQL 中将数据从一个表插入到另一个表?

AmitDiwan
更新于 2019年12月11日 11:44:49

864 次浏览

要将数据从一个表插入到另一个表,请使用 INSERT INTO SELECT 语句。让我们首先创建一个表 - mysql> create table DemoTable1 -> ( -> Id int, -> FirstName varchar(20) -> ); Query OK, 0 rows affected (0.49 sec) 使用 insert 命令在表中插入一些记录 - mysql> insert into DemoTable1 values(101, 'Adam'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable1 values(102, 'John'); Query OK, 1 row affected (0.11 sec) 使用 select 语句显示表中的所有记录 - mysql> select *from DemoTable1; 这将产生以下输出 -+------+-----------+ | Id ... 阅读更多

在 C# 中获取当前 UInt32 实例的 HashCode

AmitDiwan
更新于 2019年12月11日 11:32:46

91 次浏览

要获取当前 UInt32 实例的 HashCode,代码如下所示 -示例 在线演示using System; public class Demo { public static void Main() { uint val1 = 100; uint val2 = UInt16.MinValue; Console.WriteLine("val1 的 HashCode = "+val1.GetHashCode()); Console.WriteLine("val2 的 HashCode = "+val2.GetHashCode()); } }输出这将产生以下输出 -val1 的 HashCode = 100 val2 的 HashCode = 0示例让我们看另一个例子 - 在线演示using System; public class Demo { public static void Main() { uint val1 = 50; ... 阅读更多

在 C# 中的数组中使用 foreach 循环

AmitDiwan
更新于 2019年12月11日 11:30:45

180 次浏览

让我们来看一个在数组中使用 foreach 循环的例子 -示例 在线演示using System; public class Demo { public static void Main() { string[] products = new string[] { "Electronics", "Accessories", "Clothing", "Toys", "Clothing", "Furniture" }; Console.WriteLine("产品列表..."); foreach(string s in products) { Console.WriteLine(s); } Console.WriteLine("数组中是否包含产品 Accessories?= {0}", Array.Exists(products, ele => ele == "Accessories")); Console.WriteLine("数组中是否包含产品 Stationery?= {0}", Array.Exists(products, ele => ele == "Stationery")); ... 阅读更多

在 C# 中获取正弦值为浮点值参数的角度

AmitDiwan
更新于 2019年12月11日 11:26:30

115 次浏览

要获取正弦值为浮点值参数的角度,代码如下所示 -示例using System; public class Demo { public static void Main() { float val1 = 0.1f; float val2 = 8.9f; Console.WriteLine("角度 (val1) = "+(MathF.Asin(val1))); Console.WriteLine("角度 (val2) = "+(MathF.Asin(val2))); } }输出这将产生以下输出 -角度 (val1) = 0.1001674 角度 (val2) = NaN示例让我们看另一个例子 -using System; public class Demo { public static void Main() { float val1 = 1.2f; float val2 = ... 阅读更多

在 C# 中获取浮点值的双曲反余弦

AmitDiwan
更新于 2019年12月11日 11:10:22

96 次浏览

要获取浮点值的双曲反余弦,代码如下所示 -示例using System; public class Demo { public static void Main() { float val1 = 0.1f; float val2 = 0.9f; Console.WriteLine("角度 (val1) = "+(MathF.Acosh(val1))); Console.WriteLine("角度 (val2) = "+(MathF.Acosh(val2))); } }输出这将产生以下输出 -角度 (val1) = NaN 角度 (val2) = NaN示例让我们看另一个例子 -using System; public class Demo { public static void Main() { float val1 = 5.1f; float val2 = 8.9f; Console.WriteLine("角度 (val1) = "+(MathF.Acosh(val1))); Console.WriteLine("角度 (val2) = "+(MathF.Acosh(val2))); } }输出这将产生以下输出 -角度 (val1) = 2.312634 角度 (val2) = 2.876027

在 C# 中检查指定字符是否具有代理代码

AmitDiwan
更新于 2019年12月11日 11:07:06

149 次浏览

要检查指定字符是否具有代理代码,代码如下所示 -示例 在线演示using System; public class Demo { public static void Main() { string str = new String(new char[] { 'k', 'm', 'g', 't', '\uD800' }); bool res = Char.IsSurrogate(str, 4); if (res) Console.WriteLine("包含代理值!"); else Console.WriteLine("不包含代理值!"); } }输出这将产生以下输出 -包含代理值!示例让我们看另一个例子 - 在线演示using System; public class Demo { ... 阅读更多

如何在 C# 中获得对 StringDictionary 的同步访问

AmitDiwan
更新于 2019年12月11日 11:02:44

54 次浏览

要获得对 StringDictionary 的同步访问,代码如下所示 -示例 在线演示using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ StringDictionary strDict = new StringDictionary (); strDict.Add("A", "Books"); strDict.Add("B", "Electronics"); strDict.Add("C", "Appliances"); strDict.Add("D", "Pet Supplies"); strDict.Add("E", "Clothing"); strDict.Add("F", "Footwear"); Console.WriteLine("StringDictionary 键值对..."); foreach(DictionaryEntry de in strDict) { Console.WriteLine(de.Key + " " + de.Value); } Console.WriteLine("值 ... 阅读更多

如何在 C# 中获得对 StringCollection 的同步访问

AmitDiwan
更新于 2019年12月11日 10:57:21

52 次浏览

要获得对 StringCollection 的同步访问,代码如下所示 -示例 在线演示using System; using System.Collections.Specialized; public class Demo { public static void Main() { StringCollection stringCol = new StringCollection(); String[] arr = new String[] { "100", "200", "300", "400", "500" }; Console.WriteLine("数组元素..."); foreach (string res in arr) { Console.WriteLine(res); } stringCol.AddRange(arr); Console.WriteLine("元素总数 = "+stringCol.Count); stringCol.RemoveAt(3); Console.WriteLine("现在元素总数 = "+stringCol.Count); ... 阅读更多

广告