HelloWorld官方 HelloWorld官方
3年前
C++概述
概述C是静态,可编译,通用,大小写敏感,格式自由的编程语言,它支持程序化,面向对象的,和泛型编程方式。C被看作是中间层语言,因为它同时包含了低级语言和高级语言的特性。C是于1979年在新泽西的茉莉山丘的贝尔实验室由BjarneStroustrup开发的,它是C语言的加强版,最开始它被称作“CwithClasses”,但是
Wesley13 Wesley13
2年前
C++ 11
std::terminate(); set_terminate,产生异常会调用该函数,默认是调用abortvoidhandler(){cout<<"error~~~~~~~~~~~~~~~~~~";}std::set_terminate(handler);//默认调用
Wesley13 Wesley13
2年前
C 扩展库
CRUDtablecreatetableifnotexistsstudent(idintauto_increment,namevarchar(16)notnull,ageintnotnull,addres
Wesley13 Wesley13
2年前
C++ 窗体
1、引用include<stdlib.h//include<stdio.hinclude<windows.hinclude<stdio.hinclude<shellapi.hpragmacomment(lib,"user32")pragmacomment(lib,"gdi32.lib")
Wesley13 Wesley13
2年前
C 标准库
strcatAppendsacopyofthesourcestringtothedestinationstring.Theterminatingnullcharacterindestinationisoverwrittenbythefirstcharacterofsource,a
Stella981 Stella981
2年前
C# SqlBulkCopy
原文地址:https://www.cnblogs.com/ShoneH/p/4691454.html下面的原地址忘了publicboolExcuteNonQuery(DataTabledt){stringconnStringSystem.Configuration.ConfigurationManag
Wesley13 Wesley13
2年前
C++面试
C/C基础dynamic\_cast和static\_cast区别,为什么dynamic\_cast能做到类型检查new和malloc区别,new实际上执行了什么操作,可能在什么步骤出现异常虚继承的细节,纯虚函数智能指针的作用和实现,auto\_ptr和share\_ptr区别,循环引用,weak
Stella981 Stella981
2年前
C# ToString()
前言C中的ToString()方法的用法及其丰富,这里罗列了一些常见的使用方式,慢慢补充...ToString("yyyyMMddhh:mm:ss")输出格式化后的日期时间字符ToString("x2")转换为16
Wesley13 Wesley13
2年前
C++进阶
///任何时候都不要在构造函数或析构函数中调用虚函数/classdog{public:stringm_name;
Wesley13 Wesley13
2年前
C++ 注释
C注释程序的注释是解释性语句,您可以在C代码中包含注释,这将提高源代码的可读性。所有的编程语言都允许某种形式的注释。C支持单行注释和多行注释。注释中的所有字符会被C编译器忽略。1include<iostream23/runthisprogramusingthe