C#位运算和位移运算符

using System;

namespace MyApplication {

   class Program {

      static void Main(string[] args) {
         int a = 60; /* 60 = 0011 1100 */
         int b = 13; /* 13 = 0000 1101 */
         int c = 0;

         // Bitwise AND Operator
         c = a & b; /* 12 = 0000 1100 */
         Console.WriteLine(Line 1 - Value of c is {0}, c );

         // Bitwise OR Operator
         c = a | b; /* 61 = 0011 1101 */
         Console.WriteLine(Line 2 - Value of c is {0}, c);

         // Bitwise XOR Operator
         c = a ^ b; /* 49 = 0011 0001 */
         Console.WriteLine(Line 3 - Value of c is {0}, c);

         // Bitwise Complement Operator
         c = ~a; /*-61 = 1100 0011 */
         Console.WriteLine(Line 4 - Value of c is {0}, c);

         // Bitwise Left Shift Operator
         c = a << 2; /* 240 = 1111 0000 */
         Console.WriteLine(Line 5 - Value of c is {0}, c);

         // Bitwise Right Shift Operator
         c = a >> 2; /* 15 = 0000 1111 */
         Console.WriteLine(Line 6 - Value of c is {0}, c);
         Console.ReadLine();
      }
   }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


c#如何实现添加到列表代码:var list = new List<string>(); list.Add("Hello");
c#循环访问字典代码:foreach(var item in myDictionary) {   foo(item.Key);
using System; namespace OperatorsAppl { class Program { static void Main(string[] args) { bool a = true;
using System; class Program { static void Main(string[] args) { int a = 21; int b = 10; if (a == b) { Console.WriteLine("Line 1 - a is equal to b");
using System; namespace OperatorsAppl { class Program { static void Main(string[] args) { int a = 21; int b = 10;
using System; namespace DeclaringConstants { class Program { static void Main(string[] args) { const double pi = 3.14159;
using System; namespace EscapeChar { class Program { static void Main(string[] args) { Console.WriteLine("Hello\\tWorld\\n\\n");
using System; namespace VariableDefinition { class Program { static void Main(string[] args) { short a; int b ;
using System; namespace TypeConversionApplication { class StringConversion { static void Main(string[] args) {
using System; namespace TypeConversionApplication { class ExplicitConversion { static void Main(string[] args) {
using System; namespace DataTypeApplication { class Program { static void Main(string[] args) { Console.WriteLine("Size of int: {0}", sizeof(int));
using System; namespace RectangleApplication { class Rectangle { // member variables double length; double width;
using System; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { /* my first program in C# */
using System; namespace CalculatorApplication { class NumberManipulator { public int FindMax(int num1, int num2) {
using System; namespace RectangleApplication { class Rectangle { //member variables internal double length;
using System; namespace RectangleApplication { class Rectangle { //member variables private double length;
namespace RectangleApplication { class Rectangle { //member variables public double length; public double width;
using System; namespace Loops { class Program { static void Main(string[] args) { /* local variable definition */
using System; namespace Loops { class Program { static void Main(string[] args) { /* local variable definition */
using System; namespace Loops { class Program { static void Main(string[] args) { /* local variable definition */