- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
#include <stdio.h>
#include <string.h>
int main()
{
int test1 = 8410092; // 0x8053EC
int test2 = 8404974; // 0x803FEE
char *t1 = ( char*) &test1;
char *t2 = (char*) &test2;
int ret2 = memcmp(t1,t2,4);
printf("%d",ret2);
}
这是一个非常基本的函数,运行时会打印 -2。也许我完全误解了 memcmp,但我想如果它返回第一个不同字节之间的差异。由于test1 比test2 大,打印的值不应该是正数吗?
我正在为 ubuntu 使用标准的 gcc.7 编译器。
最佳答案
正如评论中所指出的,memcmp()
运行字节比较。这是一个男人的引述
int memcmp(const void *s1, const void *s2, size_t n);
RETURN VALUE: The memcmp() function returns an integer less than, equal to, or greater than zero if the first n bytes of s1 is found, respectively, to be less than, to match, or be greater than the first n bytes of s2 For a nonzero return value, the sign is determined by the sign of the difference between the first pair of bytes (interpreted as unsigned char) that differ in s1 and s2. If n is zero, the return value is zero. http://man7.org/linux/man-pages/man3/memcmp.3.html
如果字节不相同,则差异的符号取决于目标字节顺序。
memcmp()
的一个应用是测试两个大型数组是否相同,这可能比编写逐个元素比较的循环更快。有关详细信息,请参阅此堆栈问题。 Why is memcmp so much faster than a for loop check?
关于c - 为什么当存在正差异时 memcmp 返回负值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53491037/
template int custom_memcmp(const T* a, const T* b, std::size_t n); 这会比 C 的 memcmp 更快吗? 如果 sizeof(T)
如果我为 memcmp 的第一个和第二个参数传递相等的指针,我怀疑它可能只是返回 0 而不检查元素——因为如果传递相同的指针,则元素必须为零。在我看来,检查指针相等性并提前退出是很好的优化。 我检查了
是 if(strncmp(buf, buf2, 7) == 0) 做同样的事情 if(memcmp(buf, buf2, 7) == 0) buf 和 buf2 是 char* 数组或类似数组。 我打
我从 fasm(版本 1.71.51)代码调用 memcmp,并且得到了奇怪的结果。 看起来memcmp只比较奇数位置的字符。代码: format ELF64 section '.text' exec
我想知道 memcmp 函数必须返回什么。 我一直在 Internet 上搜索,通常 memcmp 定义如下所示: The memcmp() function returns an integer g
如果我发送 memcmp 两个指向整数的指针,那么它似乎将整数解释为字符。 例如: int a = 5; int b = 256; int res = memcmp(&a,&b,sizeof(int)
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
struct Flat { int a1; int a2; } // a hierarchical struct which containing a struct attribute str
我正在使用一个包含许多成员的大型结构,我想要一种简单的方法来快速查看是否有任何成员非零。我知道 memcmp() 不应该用于比较两个结构是否相等(如下所述: How do you compare st
我想以最快速有效的方式找出两个内存缓冲区(保存任意定义的值)在按位比较中是否相同。 我对 bool 值“相同”以外的任何东西都不感兴趣,我希望该方法尽快返回,即首先发现差异。 实现此目标的最佳方法是什
我在使用 memcmp 时遇到了一个小问题。我有两个数组(长度 = 3 字节),数据完全相同。 如果我尝试将它们与 memcmp 进行比较,它会失败吗?! if (memcmp(ucbuffer, u
在 C 中,我想检查给定的字符数组中的任意字母,并根据它的内容进行更改。例如,字符“a”或“A”将更改为“4”(表示 4 的字符)。这是我的编码练习:) 代码如下: #include #includ
我有两个相同大小的 unsigned char 数组和一个检查它们是否相等的 if 语句: #define BUFFER_SIZE 10000 unsigned char origCh
我有一个缓冲区,还有几个指向它的指针。我想根据指针指向的缓冲区中的字节对指针进行排序。 qsort() 和 STL::sort() 可以被赋予自定义比较函数。例如,如果缓冲区是零终止的,我可以使用 s
这个问题有点难以解释,因为代码片段是一个更大项目的一部分。我会尽我所能解释这个问题。 我有两个文件 FILE *f,*m; f=fopen("/home/machine/decoder
我刚好调试了一个令人难以置信的严重错误:在我自己的 PC(Windows 7 x64,MinGw)上,我的 C 程序在比较数组成员时使用 memcmp 成功地对数组进行了排序。 我的函数使用了冒泡排序
在 C++ 中,比较两个字大小结构(例如 32 位架构中的 4 字节大小)的最有效方法(内存和时序)是什么。假设没有垃圾填充位并且: struct A, B; 一方面,我可以使用 memcmp(&A,
下面是memcmp的微软CRT实现: int memcmp(const void* buf1, const void* buf2, size_t count
下面的简单程序对我来说是段错误: #include int main() { void* voidp = NULL; char zeroes[sizeof(void*)];
我已经使用 memcmp 函数比较了两个字符串文字。 #include #include int main() { char str1[] = "abcd"; char str2[] =
我是一名优秀的程序员,十分优秀!