始创于2000年 股票代码:831685
咨询热线:0371-60135900 注册有礼 登录
  • 挂牌上市企业
  • 60秒人工响应
  • 99.99%连通率
  • 7*24h人工
  • 故障100倍补偿
您的位置: 网站首页 > 帮助中心>文章内容

C: (memory) 通用的交换数据方法

发布时间:  2012/9/9 11:01:22

 

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
  
void intSwap (int *a, int *b)
{
    int temp = *a;
    *a = *b;
    *b = temp;
}
  
void genericSwap (void *a, void *b, size_t size)
{
    void *temp = malloc(size);
    memcpy(temp, a, size);
    memcpy(a, b, size);
    memcpy(b, temp, size);
}
  
  
int main(int argc, const char * argv[])
{
    // swap two integers
    int m = 1;
    int n = 2;
    intSwap(&m, &n);
    printf("%d,%d\n", m, n); // 2,1
      
    // generic swap (int test)
    int j = 3;
    int i = 4;
    genericSwap(&j, &i, sizeof(int));
    printf("%d,%d\n", j, i); // 4,3
      
    // generic swap (struct test)
    typedef struct {
        int height;
        int weight;
    } human;
      
    human tom;
    tom.height = 188;
    tom.weight = 85;
      
    human jerry;
    jerry.height = 190;
    jerry.weight = 99;
      
    genericSwap(&tom, &jerry, sizeof(human));
    printf("tom: %d, %d jerry: %d, %d\n",
           tom.height, tom.weight,
           jerry.height, jerry.weight);
    //tom: 190, 99 jerry: 188, 85
      
    return 0;
}
 


本文出自:亿恩科技【www.enkj.com】

服务器租用/服务器托管中国五强!虚拟主机域名注册顶级提供商!15年品质保障!--亿恩科技[ENKJ.COM]

  • 您可能在找
  • 亿恩北京公司:
  • 经营性ICP/ISP证:京B2-20150015
  • 亿恩郑州公司:
  • 经营性ICP/ISP/IDC证:豫B1.B2-20060070
  • 亿恩南昌公司:
  • 经营性ICP/ISP证:赣B2-20080012
  • 服务器/云主机 24小时售后服务电话:0371-60135900
  • 虚拟主机/智能建站 24小时售后服务电话:0371-60135900
  • 专注服务器托管17年
    扫扫关注-微信公众号
    0371-60135900
    Copyright© 1999-2019 ENKJ All Rights Reserved 亿恩科技 版权所有  地址:郑州市高新区翠竹街1号总部企业基地亿恩大厦  法律顾问:河南亚太人律师事务所郝建锋、杜慧月律师   京公网安备41019702002023号
      1
     
     
     
     

    0371-60135900
    7*24小时客服服务热线