C#中对字符串应用的逻辑运算符
以下列出了可在 C# 中对字符串使用的逻辑运算符。
运算符 | 说明 | 示例 |
---|---|---|
&& | 被称为逻辑 AND 运算符。如果两个操作数都非零,则条件变为真。 | (A && B) 为假。 |
|| | 被称为逻辑 OR 运算符。如果两个操作数中的任何一个非零,则条件变为真。 | (A || B) 为真。 |
! | 被称为逻辑 NOT 运算符。用于逆转操作数的逻辑状态。如果条件为真,则逻辑 NOT 运算符会使其为假。 | !(A && B) 为真。 |
我们来看一个示例,演示如何对字符串使用逻辑 AND 运算符 −
示例
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; public class Demo { public bool CheckUnique(string str) { string one = ""; string two = ""; for (int i = 0; i < str.Length; i++) { one = str.Substring(i, 1); for (int j = 0; j < str.Length; j++) { two = str.Substring(j, 1); if ((one == two) && (i != j)) return false; } } return true; } static void Main(string[] args) { Demo d = new Demo(); bool b = d.CheckUnique("amit"); Console.WriteLine(b); Console.ReadKey(); } }
输出
True
广告