ShiftOperators.cs

/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: [email protected]
 * Create Date: June 27, 2003
 * Last Modified Date:
 */
using System;

namespace Client.Chapter_2___Operators_and_Excpressions
{
    class ShiftOperators
    {
        static void Main(string[] args)
        {
            uint a = 0;
            uint b = 0;

            a = 8 << 3;
            b = 32 >> 4;
        }
    }
}

你可能感兴趣的:(Opera)