首页 | 本学科首页   官方微博 | 高级检索  
相似文献
 共查询到20条相似文献,搜索用时 62 毫秒
1.
通过对C++特点的分析,说明C++程序设计的核心问题是“类”的设计,要充分利用C++这方面的优势。  相似文献   

2.
V2C++——一个用C++实现的VHDL翻译型模拟器   总被引:2,自引:0,他引:2  
由于面向对象的C++语言更贴近描述硬件对象的VHDL语言C++实现翻译型VHDL模拟器,并利用C++本身的编译器的优化功能,可以得到运行的时间和空间方面效率较高的VHDL模拟器,V2C++的原型设计和初步实践表明,用C++实现VHDL翻译性模拟器比解释性模拟器具有较高效率,利于较大规模的电路的模拟。  相似文献   

3.
在MATLAB环境下创建C/C++外部应用程序的方法   总被引:2,自引:0,他引:2  
介绍了利用MATLAB编译器和MATLAB的C/C++Math函数库以及C/C++编译器生成C/C++应用程序的优点及具体的编译链接流程,并通过实例分析了创建C/C++应用程序的方法。  相似文献   

4.
本文经过对C++语言和C语言的比较研究,较为全面地讨论了C++语言的非面向对象特征,特别对这些特征的意义进行了分析,并指出区别和了解这些非面向对象特征对于学习C语言和C++语言都有重要意义。  相似文献   

5.
刘广钟 《计算机工程》1995,21(2):25-27,36
通过对MicrosoftC系列版本的比较,在第七版本的存储管理系统中,综述了based寻址函数,虚拟存储管理和C++存储管理的实现原理与使用方法。  相似文献   

6.
DPC-C++语言是一个支持分布式应用程序设计的面向对象的并发程序设计语言,本文侧重介绍了DPC-C++语言的并发性实现及其程序模型,并简要给出其运行支持系统的设计。  相似文献   

7.
DC++是一种具有分布并行设施的面对向对象编程语言。它是由面向对象语言C++向上兼容扩充得到的。本文介绍DC++语言的设计与实现。  相似文献   

8.
郭玲玲 《微机发展》2000,10(4):55-56
目前,C和C++语言得到了广泛的运用。宏的编制和使用属于其中的高级编程主题,本文结合作者的编程体会,论述了宏的编制和使用的具体方法。  相似文献   

9.
面向对象程序设计(OOP)是九十年代程序设计发展的主注以及C++是面向对象程序设计语言中最流行的一种,但一些因素严重影响着C++语言的产及使用其中最主要的一点就是C++缺乏实用,方便的公用类库,本文介绍了两个C++语文类库的构造。  相似文献   

10.
本文对面向对象的C++语言中提供的可维护性语言成分进行了分类,并分别进行详细讨论。  相似文献   

11.
N. H. Gehani  W. D. Roome 《Software》1988,18(12):1157-1177
C++ and Concurrent C are both upward-compatible supersets of C that provide data abstraction and parallel programming facilities, respectively. Although data abstraction facilities are important for writing concurrent programs, we did not provide data abstraction facilities in Concurrent C because we did not want to duplicate the C++ research effort. Instead, we decided that we would eventually integrate C++ and Concurrent C facilities to produce a language with both data abstraction and parallel programming facilities, namely, Concurrent C++. Data abstraction and parallel programming facilities are orthogonal. Despite this, the merger of Concurrent C and C++ raised several integration issues. In this paper, we will give introductions to C++ and Concurrent C, give two examples illustrating the advantages of using data abstraction facilities in concurrent programs, and discuss issues in integrating C++ and Concurrent C to produce Concurrent C++.  相似文献   

12.
This paper describes an experiment in the development of a small piece of software in both the languages C and C++ in a university setting. The C++ codes were found to be more modular than the corresponding C codes. Some of the other effects of C++ on program quality are very briefly discussed. The paper also discusses some of the errors that C programmers may make as novice C++ programmers, and the testing of object-oriented programs. Some of the error types possible in C++, but not in C, include delays in the flushing of output buffers and polymorphism.  相似文献   

13.
C语言中的数据类型   总被引:2,自引:0,他引:2  
数据类型是C语言中的一个既简单又基顾的问题,如果我们对它没有充分的理解,往往会导致一些莫名其妙的错误,本文简单介绍ANSI C推荐的数据类型处理方法,并结合TurboC实现分析了几个错误实例。  相似文献   

14.
针对电子商务交易流程,分析了C2C模式下电子商务"三流"中的安全需求和安全威胁,给出电子商务的数字取证框架,从数字证据的发现、固定、提取、分析、表达等方面对电子商务中的数字取证技术进行了分析,介绍了数字取证过程中所采用的各项关键技术。  相似文献   

15.
C2C是基于互联网的一种重要网络购物模式,文章通过对C2C网络购物平台的深入研究,以用户体验设计研究为中心,从C2C网络购物平台的五个用户体验要素进行深入剖析,对C2C网络购物平台的用户体验设计做出整体系统的概念性分析。  相似文献   

16.
N. H. Gehani  W. D. Roome 《Software》1992,22(3):265-285
Concurrent C (C++) is a parallel superset of C (C++). Versions of Concurrent C have now been implemented for a variety of uniprocessors and multiprocessors. We first implemented a uniprocessor version of Concurrent C correctly anticipating that it would be relatively easy to extend the uniprocessor implementation to run on multiprocessors. Concurrent C is translated to C. The generated C code contains calls to the C library implementing the Concurrent C run-time system. This paper describes the ‘hard core’ details of the Concurrent C implementation: the specifics of process states, the data structures used, the library functions, and the C code generated for various Concurrent C constructs. We also give an overview of the Concurrent C facilities and of the uniprocessor, distributed and shared-memory multiprocessor implementations.  相似文献   

17.
一种基于单片机和串行EEPROM的智能密码锁   总被引:1,自引:0,他引:1  
刘振海 《微计算机信息》2007,23(35):133-134,95
本文介绍一种基于单片机和串行EEPROM的智能密码锁,对系统硬件设计和软件实现进行了详细的描述。该系统采用AT89C51单片机和AT24C01串行EEPROM,通过AT89C51模拟12C总线和AT24C01通讯,实现密码锁的功能。  相似文献   

18.
C/C 中宏的编制和使用   总被引:1,自引:1,他引:0  
目前 ,C和C 语言得到了广泛的运用。宏的编制和使用属于其中的高级编程主题。本文结合作者的编程体会 ,论述了宏的编制和使用的具体方法。  相似文献   

19.
已有前人提出用C语言实现面向对象的方案,但它们都需要开发者人为提供支持面向对象的C语言框架,增加了开发者的负担。该方案用类C 语法编写初始代码,享受面向对象特性,而内部把初始代码自动转换成为支持面向对象特性的C代码,实现了面向对象理念和C语言的无缝对接。文章解析了用C语言实现面向对象的机制及代码转换机制,对比该方案和C 编程的效果,证实该方案的优越性。  相似文献   

20.
C++程序设计课程研究与教材建设   总被引:2,自引:1,他引:1  
文章简要介绍了C++语言及课程的特点,分析国内高校C++课程的教材建设现状,针对C++课程的特点,结合南通大学C++课程的建设、教学研究、教学实践和教学理念,以学生的认识规律和编程能力的形成规律为依据,以培养学生实际编程能力和创新能力为目标,阐述C++系列教材建设历程和建设成果。  相似文献   

设为首页 | 免责声明 | 关于勤云 | 加入收藏

Copyright©北京勤云科技发展有限公司  京ICP备09084417号