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

更新日期:2020-06-21

1 千+ 人次浏览

开启您的 职业生涯

完成课程后获得认证

立即开始
广告