1) C++ source
C++源程序
1.
This paper discussed the conception and method of the transformation from similar C arithmetic to C++ source program,and give.
讨论类C算法向C++源程序变换的相关概念和方法,同时提出一种可以实现类C算法向C++源程序自动转换的编译器。
3) C++
C++
1.
Software System Design of Programmable Signal Generator Based on C++++;
基于C++语言的可编程信号源软件系统设计
2.
Real Time C++ommunication between Peripheral Equipment and Application Programming Based on C++++;
C++编程实现外设与应用程序的实时通信
3.
Research About the Further Develop of UG Based on C++++;
C++在UG二次开发中应用
4) c #
C#
1.
NET environment, using C # development MS SQL Server database application software, database connectivity through the ADO.
NET环境下,用C#开发MSSQLServer数据库应用软件时,通过ADO。
2.
This technology is called AspectC # .
NET平台的AOP技术,AspectC#。
3.
C # is an advanced and object-oriented programming language.
C# 是一种先进的、面向对象的开发语言 ,并且能够方便快捷地在MS网络平台上建立各种应用和建立能够在网络间相互调用的Web服务。
5) C ++
C++
1.
The reason of destroying data security was analyzed, and the constants and constant member in C ++++ object-oriented programming were studied.
在分析破坏数据安全性原因的基础上,通过对C++面向对象程序设计中常类型和常成员的深入研究,提出了将既需要共享、又需要防止改变的数据声明为常量,并探讨了常引用、常对象和用const修饰的对象成员的使用方法,实现对C++面向对象程序设计中共享数据的保护。
2.
introduced the design method of Enclosure Protection Alert System on serial and parallel communication technology, analyses its operation principle and workflow,and introduces the method to make use of C ++++ to realize software design.
本文介绍了基于串并口技术的围墙安防报警系统的设计方法,分析了其工作原理及工作流程,并介绍了利用C++实现软件设计的方法。
6) C#
C#
1.
Development of integrals ware resource bank with C# for Chinese medicine;
利用C#开发中医药积件资源库
2.
Design of the marine monitoring and management system based on C# technology;
基于C#技术的船舶监控管理系统的设计
3.
Efficiency Improvement of Database Input in C# with Regular Expression;
C#中利用正则表达式提高数据录入效率
参考词条
补充资料:齿轮轮齿渐开线、螺栓、弹簧autolsp源程序
一、齿轮轮齿渐开渐开线
(defun c:gear(/)
(
setq
p0 (getpoint"输入齿轮中心p0: ")
m (getreal"输入齿轮模数M: ")
z (getint"输入齿轮齿数Z: ")
ha 1
c 0.25
a (/ pi 9)
ra(/ (* (+ z (+ ha ha)) m) 2)
rf(/ (* (- z (+ (+ ha ha) c)) m) 2)
r(/ ( * m z) 2)
rb ( * r (cos a))
ri rb
ang 0
g (polar p0 ang rb)
)
(command "circle" p0 ra)
(command "circle" p0 rf)
(command "circle" p0 r)
(command "line" g)
(while (< ri ra)
(setq
ang ( + ang(/ pi 360))
ri ( / rb (cos ang))
cta ( - (/ (sin ang) (cos ang)) ang)
g(polar p0 cta ri)
)
(command g)
)
(command )
)
二、螺旋源程序
(defun errMsg (s)
(if (/= s "function cancelled") (princ (strcat "\nError: " s)))
; 当命令执行时出现错误
(setvar "cmdecho" ocmdold) ; 例如用户按下了CTRL + C
(setvar "osmode" osmold)
(setq *error* olderr) ; 恢复旧的错误处理
(princ)
)
(defun c:3Dthread (/ radouter threadpitch threadlength threadangle
ptStart innerdiafactor radmid radinner ocmdold osmold 4H 5H 6H h6 g6)
;-------------------------------------------------------------------
; 获取公制外径大小、螺距总长
; 然后计算一系列几何点
; 并且关闭对象捕捉、命令回显
;-------------------------------------------------------------------
(setq 4H (list 0.0015 0.002 0.002 0.0025 0.003 0.0035 0.004 0.005 0.006 0.007 0.008 0.009 0.010))
(setq 5H (list 0.002 0.0025 0.003 0.004 0.0045 0.0055 0.0065 0.0075 0.009 0.010 0.0115 0.0125 0.0135))
(setq 6H (list 0.003 0.004 0.0045 0.0055 0.0065 0.008 0.0095 0.011 0.0125 0.0145 0.016 0.018 0.020))
说明:补充资料仅用于学习参考,请勿用于其它任何用途。