English 中文(简体)
阅读/印刷
原标题:Read/Write compressed binary data

我读到所有地方,人们都谈论按比值压缩物体。 诸如“前三个轨道即为此类,而后两个轨道则代表此点和12个轨道”。

我理解为什么有必要尽量减少记忆的使用,但我不能认为这样做有好办法。 我知道,我会把它包到一个或多个愤怒者身上(不管时间多长),但我不能设想一个容易与之合作的办法。 如果有一个类别,我可以从任意的长篇双轨领域获得/打造任意的借方,那将非常冷静,而且我不得不对事情进行 care弄; s和|。

是否有此类事情的标准模式?

最佳回答
问题回答

你们重新寻找的是双向行动。

例如,我要说,我们再说一遍,将体现微额信贷在至少24倍的愤怒中的价值,R为23-16,G为15-8,B为7-0。

您可在0至255之间确定任何数值,而不影响其他参数:

void setR(ref int RGBValue, int newR)
{
  int newRValue = newR << 16; // shift it left 16 bits so that the 8 low-bits are now in position 23-16
  RGBValue = RGBValue & 0x00FF; // AND it with 0x00FF so that the top 16 bits are set to zero
  RGBValue = RGBValue | newRValue;   // now OR it with the newR value so that the new value is set.
}

通过使用双向和红外线(有时是更多的外来行动),你可以轻易确定和清除任何具有更大价值的个体。

我认为,你最好不要使用工具包或平台的具体总结班子,而不要使用工具包或平台,而是比照子弹,学习你的和学习;和0x04s,以及所有双向操作者如何工作。 从总体上看,它如何为大多数项目开展工作,业务速度非常快。 在大多数语文上,这些行动大致相同,因此,你获得的只是依靠某些具体工具。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签