C++ demo 函数输出数组指针

demo 2
指针数组的指针,
用法:函数输出指针数组

#include <QCoreApplication>
#include <QDebug>
//#include <QLabel>
#include<iostream>
using namespace std;

int a =100;
int b =200;

void get(int i,int** ptr,int *n)
{
    if(i==1)
    {
        ptr[0] = &a;
        ptr[1] = &b;
        *n=1;
    }
    else if (i==2)
    {
        ptr[0] = &a;
        ptr[1] = &b;
        *n=2;
    }
}

int main(int argc, char *argv[])
{

    int i=0;
    int num =2;
    int **ptr = new int*[num];
    int *n = new int;
    for(i=0;i<num;i++)
    {
        ptr[i] = new int;
    }

    get(1,ptr,n);

    for(i=0;i<*n;i++)
    {
        cout<< *ptr[i]<<endl;
    }
    cout<< "----------"<<endl;
    get(2,ptr,n);
    for(i=0;i<*n;i++)
    {
        cout<< *ptr[i]<<endl;
    }
    QCoreApplication a(argc, argv);

    for(i=0;i<num;i++)
    {
        delete ptr[i];
    }
    delete n;
    delete []ptr;
    return a.exec();
}

ps,
一、需要搞清以下概念
数组,指针,指针的指针,指针数组,指针数组的指针
二、参考:
https://blog.csdn.net/u010325193/article/details/80886720

注意:
细心的你有没有发现该代码有问题?
问题1:内存泄漏
首先 :

for(i=0;i<num;i++)
    {
        ptr[i] = new int;
    }

在初始化指针成员时,申请了内存
但在最后没有被释放掉
ptr[]指向发生了问题

初始化时应该指向为空

for(i=0;i<num;i++)
    {
        ptr[i] = nullptr;
    }

问题2:删除了不该删除的对象
由于ptr[]指向发生了改变
最后delete ptr[i]
实际删除的是

int a =100;
int b =200;

下次再访问时,会不见
故当ptr[i]初始化为nullptr时 由于没有new,不用delete

修改后版本:

#include <QCoreApplication>
#include <QDebug>
//#include <QLabel>
#include<iostream>
using namespace std;

int a =100;
int b =200;

void get(int i,int** ptr,int *n)
{
    if(i==1)
    {
        ptr[0] = &a;
        ptr[1] = &b;
        *n=1;
    }
    else if (i==2)
    {
        ptr[0] = &a;
        ptr[1] = &b;
        *n=2;
    }
}

int main(int argc, char *argv[])
{

    int i=0;
    int num =2;
    int **ptr = new int*[num];
    int *n = new int;
    for(i=0;i<num;i++)
    {
        ptr[i] = nullptr; /*初始化指向null,防止乱指*/
    }

    get(1,ptr,n);

    for(i=0;i<*n;i++)
    {
        cout<< *ptr[i]<<endl;
    }
    cout<< "----------"<<endl;
    get(2,ptr,n);
    for(i=0;i<*n;i++)
    {
        cout<< *ptr[i]<<endl;
    }
    QCoreApplication a(argc, argv);
    
    delete n;
    delete []ptr;
    return a.exec();
}
C DLL函数调用是指在C语言中调用动态链接库(DLL)中的函数。DLL是一种用于存放代码和数据的文件格式,其中包含了可以被其他程序调用的函数和变量。 实现C DLL函数调用的示例代码如下: 1. 创建DLL项目 首先,我们需要创建一个DLL项目。在IDE中选择新建项目,选择DLL(动态链接库)项目类型,并为项目指定一个名称。 2. 编写DLL函数 在DLL项目中,编写我们需要被调用的函数。例如,我们创建一个名为"add"的函数,在该函数中实现两个整数相加的功能。 ```c __declspec(dllexport) int add(int a, int b) { return a + b; } ``` 3. 构建DLL 编译和构建DLL项目,生成一个名为"demo.dll"的DLL文件。 4. 创建调用DLL的C程序 在一个新的C程序项目中,我们可以使用以下代码调用刚刚创建的DLL中的函数: ```c #include <stdio.h> #include <windows.h> // 声明DLL函数原型 typedef int(*AddFunc)(int, int); int main() { // 加载DLL HINSTANCE hinstLib = LoadLibrary(TEXT("demo.dll")); // 如果DLL加载成功 if (hinstLib != NULL) { // 获取DLL函数地址 AddFunc addFunc = (AddFunc)GetProcAddress(hinstLib, "add"); // 如果获取函数地址成功 if (addFunc != NULL) { // 调用DLL函数 int result = addFunc(3, 5); printf("结果:%d\n", result); } // 释放DLL FreeLibrary(hinstLib); } else { printf("无法加载DLL\n"); } return 0; } ``` 以上代码中,我们首先加载DLL文件,然后使用"GetProcAddress"函数获取DLL中函数"add"的地址,并将其转换为函数指针。接下来,我们可以使用函数指针直接调用DLL函数。 通过以上步骤,我们实现了C语言中调用DLL函数的功能。这使得我们可以将一些通用的功能封装成DLL,供其他程序调用,提高代码的可重用性和可维护性。同时,C DLL函数调用还可以实现与其他语言(如C++、C#等)的互操作。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值