Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
430 views
in Technique[技术] by (71.8m points)

c# - using bitwise operation to extract month from int date (yyyyMMdd)

Is it possible to extract the month from date represented as int (format YYYYMMDD, e.g. 20110401) using some bitwise operators?

If so, how can it be done?

edit: I am currently using 20110401 % 10000 / 100. I thought bit-wise could be faster. DateTime.Parse etc. are too slow for what I am trying to do.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

No, because bitwise operators work with the binary representation of the number. Your date is encoded using a decimal representation.

You can do it using arithmetic operators though:

int date = 20110401;

int day = date % 100;
int month = (date / 100) % 100;
int year = date / 10000;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...