- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我读过很多关于将数组传递给函数的讨论。它们似乎是为精通 C 的人编写的。我是一个尚未精通 C 的野蛮人。
根据我在其他讨论中读到的内容应该可以在没有指针衰减的情况下传递数组。然而,我需要帮助来实现这一点。
请给我一个简洁的示例,说明如何将数组作为指针的指针传递,并确定其在传递到的函数中的大小。
如果在函数中更改数组,我希望更改数组的源。我想尽量减少额外的内存分配。而且,如果可能的话,我想调整函数内数组的大小。
此代码无需通过即可运行。
// this works
j = sizeof(hourLongs)/sizeof(hourLongs[0]);
i = 0; while (now > hourLongs[i] && i < j){i++;}
hour = --i;
这可以工作,但无法调整函数内数组的大小。
hour = compareToLongs(&now, hourLongs, (int)(sizeof(hourLongs)/sizeof(hourLongs[0])) );
// long *, long * , int -> int
// compare time to array of times.
static int compareToLongs(long * time, long * timeList_pointer, int size){
i = 0; while (*time> (timeList_pointer)[i] && i < size){i++;}
return --i;
}
我想以一种允许我在函数中找到它的大小的方式传递数组。类似于以下内容,减去我的错误。
hour = compareToLongs(&now, &hourLongs);
// long *, (long (*) [])* -> int
// compare time to array of times.
static int compareToLongs(long * time, long ** timeList_pointer){
int size = (int)(sizeof(*timeList_pointer)/sizeof(*timeList_pointer[0]));
i = 0; while (*time> (i < size && *timeList_pointer)[i]){i++;}
free(size);
return --i;
}
编辑:hourLongs 是一个长整数数组。
编辑:关于标题,我在白话中使用了“引用”一词,以便其他像我这样的野蛮人可以找到问题。
编辑:我真的在寻找一种方法来调整函数内整数数组的大小。
sizeof(array)
给 sizeof() 一个允许确定大小的地址。这就是我想传递给我的函数的地址。
是否有原因导致我无法将传递给 sizeof() 的内容传递给我的函数?
编辑:由于 sizeof() 的操作表明可以在没有“指针衰减”的情况下传递数组。 user529758 在 this discussion 中给出了三个示例
in C99 there are three fundamental cases, namely:
1. when it's the argument of the & (address-of) operator.
2. when it's the argument of the sizeof operator.
3. When it's a string literal of type char [N + 1] or a wide string literal of type wchar_t [N + 1] (N is the length of the string) which is used to initialize an array, as in char str[] = "foo"; or wchar_t wstr[] = L"foo";.
我想要做的事情应该可以使用&array来实现。
最佳答案
在C
中,您无法在被调用函数中找到数组的大小。调用函数必须再传递一个参数来说明数组的大小。
让我们看一些例子来看看为什么这是不可能的。
首先在调用函数时,您将尝试将数组作为参数传递。但是,请注意,当您将数组作为参数传递时,它会自动变为指向其元素数据类型的指针。这将阻止被调用的
函数使用sizeof
运算符计算数组的大小。
例如,
int main(void)
{
int arr_a[2] = {22, 33};
int arr_b[5] = {6, 7, 8, 9, 10};
foo(arr_a); // Here arr_a decays to an `int *`
foo(arr_b); // Here arr_b decays to an `int *` too
return 0;
}
void foo(int *arr)
{
sizeof(arr);
/* Here sizeof(arr) will always give the size of
* an `int *` which maybe 4 or 8 bytes depending
* on platform. It does not matter weather arr_a
* or arr_b was passed from main.
* And because sizeof(arr) always gives the sameresult,
* we cannot use sizeof(arr)/sizeof(arr[0]) to calculate
* the size of array that was passed.
*/
/* This value will always be the same,
* regardless of what was passed */
sizeof(arr)/sizeof(arr[0]);
}
另外,请注意:
void foo(int arr[]) { ... }
相当于:
void foo(int *arr) { ... }
编译器会默默地将 int arr[]
更改为 int *arr
。因此,将 int arr[]
作为参数不会有任何区别。
接下来,您可能会考虑传递数组的地址(通过执行&arr_name
)。但是,请注意,&arr_name
是一个指向数组(具有一定大小)的指针
,它与指向数组的指针不同指向基础数据类型的指针
。这次你做了这样的事情。
void foo(void) {
int arr_a[2] = {22, 33};
int arr_b[3] = {7, 8, 9};
bar(&arr_a); // Note here that type of `&arr_a` is `int (*)[2]`,
// i.e. a `pointer to int array of 2 elements`, which is
// different from a `pionter to pointer to int`
bar(&arr_b); // Note here that type of `&arr_b` is `int (*)[3]`,
// i.e. a `pointer to int array of 3 elements`, which is
// different from a `int (*)[2]`,
// i.e a `pointer to int array of 2 elements`
// Note that this will give ERROR. See comments in bar()
return 0;
}
void bar(int (*arr)[2]) {
/*
* The caller of this function can ONLY pass int arrays with
* 2 elements. Caller CANNOT pass int array with 3 elemens, or
* 1 element, or 5 element.
* This means you ALWAYS KNOW the size of arrays being passed,
* and although you can calculate the size by doing
* sizeof(*arr)/sizeof(*arr[0]);
* There is no point in calculating it - you alreay know the size
*/
}
所以,基本上你甚至不能通过传递&array_name
来传递指向数组的指针
来解决这个问题,因为你将需要不同的函数来接受不同大小的数组。例如,void bar_2(int (*arr)[2]) {...}
接受指向 2 个整数的数组的指针
,以及 void bar_3(int (*arr)[3]) {...}
接受指向 3 个整数的数组的指针
。此外,在这些函数中计算大小是没有意义的,正如您已经知道的那样。
最后,您将尝试传递一个指向底层数据类型的指针
。所以你做类似的事情:
void foo() {
int arr_a[2] = {22, 33};
int arr_b[5] = {6, 7, 8, 9, 10};
int *ptr;
ptr = &arr_a[0];
bar(&ptr); // Passing pointer to pointer to int (int **)
ptr = &arr_b[0];
bar(&ptr); // Passing pointer to pointer to int (int **)
}
void bar(int **pptr) {
sizeof(*pptr);
/* This will always be the same.
* i.e. the size of an integer pointer
* So here again you cannot use
* sizeof(*pptr)/sizeof((*pptr)[0]) to calculate the size
* as it will always give the same result */
sizeof(*pptr)/sizeof((*pptr)[0]) // Always same, no matter what was
// passed by the caller
}
您会发现,传递指向基础数据类型的指针
也不能解决此问题。
因此,您会看到,无论您做什么,都无法通过在被调用函数中使用 sizeof()
找到数组的大小。 仅当调用者传递此信息时,被调用函数才能知道数组的大小。
顺便说一句,您的代码存在问题。当你在做的时候
i = 0; while (now > hourLongs[i] && i < j){i++;} // AND
i = 0; while (*time> (timeList_pointer)[i] && i < size){i++;}
while 循环中的条件顺序应该相反。应该是
i = 0; while ( i < j && now > hourLongs[i]){i++;} // AND
i = 0; while (i < size && *time> (timeList_pointer)[i]){i++;}
这是因为,您必须首先检查 i
是否在数组范围内,然后仅计算 hourLongs[i]
或 (timeList_pointer) [i]
.
关于c - 如何将指针传递给数组而不衰减,并在野蛮人的函数中使用 'reference'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38858594/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!