libcstl中的list没法插入自定义数据

一开始运行出错,开启debug以后发现在push自定义对象的时候调试器提示找不到一个叫/XXX/XXXX/XXXX/libcstl-2.3.0/src/cstl_list_private.c</br>
而那个路径正是我进行安装的路径,安装完以后我把安装包给删除掉了,所以它找不到。这样的话,我们在一开始安装的时候就要注意最好先把tar.gz解压出来的文件夹放到特定文件夹,比如/usr/local/下,这样不会在安装完成后被误删,也比较方便查找。</br>
但是再次调试的时候却发现插入操作死在了调用_my_copy()函数那里,里面设置了一个int型临时变量i_temp用来作中间值方便调试,调试过程中发现i_temp成了一个非常小的负值。
但是直接调用_my_copy()是能正确运行的。</br>
鉴于程序呈现出这种尿性,我觉得应该是cstl它自己设计得不够健壮。。。不然实在是说不通程序会死在_my_copy()函数那里。
其实最后我发现copy函数形参里的cpv_source它的地址为0x1,明显就不可能。这个就关系到cstl对list的内部实现了,不想再深入去了解,暂时到此为止。
最后还是照惯例贴个代码:

  1 /*
  2  * new_test_for_ctsl_selfType.c
  3  *
  4  *  Created on: Mar 21, 2014
  5  *      Author: nerohwang
  6  */
  7 #include<stdio.h>
  8 #include<stdlib.h>
  9 #include<cstl/clist.h>
 10 #include<assert.h>
 11 /*Initlizing a user-defined type ,use
 12  * func type_register(1,2,3,4,5) first.
 13  * 1.type: user-defined type
 14  * 2.ufun_init: init function
 15  * 3.bfun_copy: copy function
 16  * 4.bfun_less: less-comparison function
 17  * 5.ufun_destroy: destroy function
 18 
 19 bool_t type_register(
 20 type,
 21 unary_function_t ufun_init,
 22 binary_function_t bfun_copy,
 23 binary_function_t bfun_less,
 24 unary_function_t ufun_destroy
 25 );
 26  *
 27 */
 28 typedef struct user_defined_type
 29 {
 30     int i_first;
 31     int i_second;
 32 }myType;
 33 
 34 static void _my_init(const void* cpv_input,void* pv_output)
 35 {
 36     assert(cpv_input != NULL);
 37     ((myType*)cpv_input)->i_first = 8;
 38     ((myType*)cpv_input)->i_second = 9;
 39     *((bool_t*)pv_output) = true;
 40 }
 41 
 42 static void _my_copy(const void* cpv_dest,const void* cpv_source,void* pv_output)
 43 {
 44     assert(cpv_dest != NULL && cpv_source != NULL);
 45     int i_temp = ((myType*)cpv_source)->i_first;
 46     ((myType*)cpv_dest)->i_first = i_temp;
 47     i_temp = ((myType*)cpv_source)->i_second;
 48     ((myType*)cpv_dest)->i_second = i_temp;
 49     *((bool_t*)pv_output) = true;
 50 }
 51 
 52 static void _my_destroy(const void* cpv_input,void* pv_output)
 53 {
 54     assert(cpv_input != NULL);
 55     ((myType*)cpv_input)->i_first = 0;
 56     ((myType*)cpv_input)->i_second = 0;
 57     *((bool_t*)pv_output) = true;
 58 }
 59 
 60 static void _my_less(const void* cpv_first, const void* cpv_second,void* pv_output)
 61 {
 62     assert(cpv_first != NULL && cpv_second != NULL);
 63     *((bool_t*)pv_output) = (((myType*)cpv_first)->i_first < ((myType*)cpv_second)->i_first)?true:false;
 64 }
 65 
 66 int main(int argc,char* argv[])
 67 {
 68     list_t* pList = create_list(myType);
 69     list_iterator_t i_it;
 70     list_iterator_t my_it;
 71     printf("Before type register:\n");
 72     if(pList == NULL){
 73         printf("Creation of myType failed!\n");
 74     }else{
 75         printf("Creation of myType succeeded!\n");
 76     }
 77     type_register(myType,_my_init,_my_copy,_my_less,_my_destroy);
 78 
 79     pList = create_list(myType);
 80     printf("After type register:\n");
 81     if(pList != NULL){
 82             printf("Creation of myType succeeded!\n");
 83     }else{
 84             printf("Creation of myType failed!\n");
 85     }
 86 
 87     //just a simple test.
 88     myType my_first;
 89     my_first.i_first = 1;
 90     my_first.i_second = 2;
 91     printf("first :one-> %d,sec-> %d\n",my_first.i_first,my_first.i_second);
 92 
 93     myType my_second;   //default
 94 
 95     myType my_third;
 96     my_third.i_first = 12;
 97     my_third.i_second = 13;
 98 
 99     list_t* pList_i = create_list(int);
100     if(pList_i == NULL){
101         printf("Creation of int list failed!\n");
102     }
103     list_init(pList_i);
104     list_push_back(pList_i,3);
105     list_push_back(pList_i,8);
106     list_push_back(pList_i,7);
107     printf("Now we have %d int-var in our list\n",list_size(pList_i));
108     for(i_it = list_begin(pList_i);!iterator_equal(i_it,list_end(pList_i));i_it = iterator_next(i_it))
109     {
110         printf("%d\t",*(int*)iterator_get_pointer(i_it));
111     }
112     printf("\n");
113 
114     bool_t b_temp;
115     _my_copy((void*)&my_second,(void*)&my_first,(void*)&b_temp);
116     printf("Second :one-> %d,sec-> %d\n",my_second.i_first,my_second.i_second);
117 
118     printf("break point\n");
119     list_init(pList);
120     list_push_back(pList,my_second);
121     my_it = list_begin(pList);
122     printf("Second myType: one-> %d , sec->%d\n",((myType*)iterator_get_pointer(my_it))->i_first,\
123             ((myType*)iterator_get_pointer(my_it))->i_second);
124 
125 
126     printf("break point\n");
127     list_push_back(pList,my_first);
128     list_push_back(pList,my_third);
129     printf("Now we have %d obj in our list\n",list_size(pList));
130     return 0;
131 
132 }

 

转载于:https://www.cnblogs.com/nerohwang/p/3616265.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/546765.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java 200+ 面试题补充 ThreadLocal 模块

让我们每天都有进步&#xff0c;老王带你打造最全的 Java 面试清单&#xff0c;认真把一件事做到极致。 本文是前文《Java 最常见的 200 面试题》的第一个补充模块。 1.ThreadLocal 是什么&#xff1f; ThreadLocal 是一个本地线程副本变量工具类。主要用于将私有线程和该线程…

如何在CDH5.16.2中部署海豚调度器Apache Dolphin Scheduler 1.2.0

Apache Dolphin Scheduler 组件介绍 分布式易扩展的可视化DAG工作流任务调度系统。致力于解决数据处理流程中错综复杂的依赖关系&#xff0c;使调度系统在数据处理流程中开箱即用。 官网 : https://dolphinscheduler.apache.org/en-us/ Github : https://github.com/apache…

Ubuntu20.04 pycharm python打包制作DEB包详细步骤及雷区

记录一次Deb打包过程及踩雷警示 最近写了一个python的小程序&#xff0c;希望能打包成deb文件&#xff0c;便于将写好的软件安装 在其他没有安装工作环境的电脑上&#xff0c;把这安装deb后可以在应用列表和桌面看到。下面介绍一个python工程的打包过程&#xff0c; 分为两大步…

有人问我,为什么1+1等于2

2019独角兽企业重金招聘Python工程师标准>>> 我回复说&#xff1a;“这是规则&#xff0c;天地万物有其规则&#xff0c;人观察而形成自己的规则。李小龙说&#xff1a;“以无法为有法&#xff0c;以无限为有限”&#xff0c;其实也是用最大的规则作为准则&#xff…

Python:通过SNMP协议获取华为交换机的ARP地址表

华为交换机SNMP配置 system-view 进入交换机的配置模式、[switch]snmp-agent community read huawei 配置community 只读属性为huawei[switch]snmp-agent community write huawei 配置community 可写属性为huawei[switch]snmp-agent sys-info version all 配置版本为所有# codi…

你真的知道 == 和 equals 的区别吗?

让我们每天都有进步&#xff0c;老王带你打造最全的 Java 面试清单&#xff0c;认真把一件事做到极致。 在 Java 中 和 equals 的区别&#xff0c;感觉只有很少的人能才完全说正确。 常见的错误回答就是&#xff1a; 基础类型对比的是值是否相同&#xff0c;引用类型对比的是…

Ray集群搭建 Python Demo

目录 准备条件&#xff08;基于linux环境&#xff09; 参考文献例子-python Ray集群 1.部署head节点2.部署worker节点部署Ray集群安装Ray&#xff08;在所有节点上安装&#xff09;Ray工作原理Ray的优势Ray简介准备条件&#xff08;基于linux环境&#xff09; 这里部署2个节点…

解决复杂多数据源报表的5种通用办法

很多报表工具只允许在报表中使用单个数据集&#xff0c;这类工具称为单源报表工具&#xff0c;常见的比如iReport&#xff0c;Birt&#xff0c;水晶报表&#xff0c;Style report等。很多情况下我们需要用单源报表工具展现多源数据&#xff0c;比如来自MysqlOracle的数据&#…

Java 200+ 面试题补充② Netty 模块

让我们每天都能看到自己的进步。老王带你打造最全的 Java 面试清单&#xff0c;认真把一件事做到最好。 本文是前文《Java 最常见的 200 面试题》的第二个补充模块&#xff0c;第一模块为&#xff1a;《Java 200 面试题补充 ThreadLocal 模块》。 1.Netty 是什么&#xff1f; …

Ray.tune可视化调整超参数Tensorflow 2.0

Ray.tune官方文档 调整超参数通常是机器学习工作流程中最昂贵的部分。 Tune专为解决此问题而设计&#xff0c;展示了针对此痛点的有效且可扩展的解决方案。 请注意&#xff0c;此示例取决于Tensorflow 2.0。 Code: ray/python/ray/tune at master ray-project/ray GitHub E…

pyqt5中的lineEdit中只输入数字和字母

# 限制lineEdit编辑框只能输入字符和数字reg QRegExp([a-zA-z0-9]$)validator QRegExpValidator(self)validator.setRegExp(reg)self.lineEdit.setValidator(validator)

(Kali)BackTrack-linux安全***测试系统盘

BackTrack下一代产品 Kali Linux包含i386平台、amd64平台、armel平台、armhf平台&#xff1b;镜像包括ISO版本和VMWare版本&#xff1b;桌面管理器分为Gnome和MINI ISO。Kali是BackTrackLinux完全遵循Debian开发标准彻底的完全重建.全新的目录框架,复查并打包所有工具,我们还为…

MySql 优化的 30 条建议

文章来源&#xff1a;包子博客MySql 优化的 30 条建议1、应尽量避免在 where 子句中使用!或<>操作符&#xff0c;否则将引擎放弃使用索引而进行全表扫描。2、对查询进行优化&#xff0c;应尽量避免全表扫描&#xff0c;首先应考虑在 where 及 order by 涉及的列上建立索引…

PyQt5 QTableView 全部item居中

核心思路是重写QStandardItemModel的data函数 class MyQStandardItemModelModel(QStandardItemModel):"""重写QStandardItemModel的data函数&#xff0c;使QTableView全部item居中"""def data(self, index, roleNone):if role Qt.TextAlignmen…

Ubuntu18 Win10搭建Caffe训练识别mnist手写数字demo

ubuntu 系统下的Caffe环境搭建 对于caffe的系统一般使用linux系统&#xff0c;当然也有windows版本的caffe&#xff0c;不过如果你一开始使用了windows下面的caffe&#xff0c;后面学习的过程中&#xff0c;会经常遇到各种错误&#xff0c;网上下载的一些源码、模型也往往不能…

windows server 2008 IE代理服务器实验

一、首先介绍IE代理服务器的好处如下&#xff1a;1、节省带宽 2、绕过防火墙二、下面以这个软件为代理软件&#xff0c;本人在物理机和虚拟机实验&#xff0c;1、首先在物理机安装代理软件&#xff0c;安装完成如图所示&#xff1a;2、在“设置”项代理协议端口、在本地局域网…

Java 200+ 面试题补充③ Dubbo 模块

昨天在我的 Java 面试粉丝群里&#xff0c;有一个只有一年开发经验的小伙伴只用了三天时间&#xff0c;就找到了一个年薪 20 万的工作&#xff0c;真是替他感到开心。 他的经历告诉我们&#xff1a;除了加强自我实战经验之外&#xff0c;还要努力积累自己的理论知识。 人生没有…

十一、PyQt5点击主窗口弹出另一个非模态子窗口

单击主对话框菜单“设置“下的”交换机配置”action的信号与槽 主对话框代码: # -*- coding: utf-8 -*-import sys from PyQt5 import QtCore from PyQt5.QtWidgets import QApplication, QMainWindow, QDialog, QDesktopWidget import win32api import win32con

彻底搞懂 Java 中的注解 Annotation

Java注解是一系列元数据&#xff0c;它提供数据用来解释程序代码&#xff0c;但是注解并非是所解释的代码本身的一部分。注解对于代码的运行效果没有直接影响。网络上对注解的解释过于严肃、刻板&#xff0c;这并不是我喜欢的风格。尽管这样的解释听起来非常的专业。为了缓解大…

cs时间校准

2019独角兽企业重金招聘Python工程师标准>>> c/s结构中的时间校准 拜读了风云的一篇博客 思路比较明显简单: C发包打时间戳 S收包打时间戳 S回应包打时间戳 C收包打时间戳 4个时间戳可以进行计算校准. 假设来回时间相等 转载于:https://my.oschina.net/u/1449566/bl…