CommonLibrary.NET 是一组很常用的 C# 4.0 的代码和组件包,范围涉及 ActiveRecord, Csv, Command Line Parsing, Configuration
Vera++ 是一个可编程的工具用来对 C++ 源码进行校验、分析和转换。主要是一个 C++ 源码解析引擎。 主要做代码风格的检查 项目主页: http://www.open-open
struct Libray* s[50]; fstream ofile; ofile.open("C:\\Documents and Settings\\dufan\\My Documents\\Visual
这个C#类封装了我们经常能用到的文件操作方法,包括读写文件、获取文件扩展名、复制文件、追加内容到文件、删除文件、移动文件、创建目录、递归删除文件及目录、列目录、列文件等,不可多得。 using System;
package com.example.testaudio; import java.io.File; import android.app.Activity; import android.media.MediaPlayer; import android.media.MediaPlayer.OnCompletionListener; import android.media.MediaReco
C#生成简单验证码的代码 html页面
using System; using System.Collections.Generic; using System.Text; namespace Delegate { // 热水器 public class Heater { private int temperature; public delegate void BoilHandler(int param); //声明委托 public
#region 邮件发送 /// <summary> /// 发送邮件支持HTML格式 先引用System.Net.Mail; /// </summary> /// <param name="MailFrom">发送人Email 如demo@126.com</param> /// <param name="MailServer">邮件服务器 如mail.126.com</param> /// <p
C# 两个目录同步的代码 using System; using System.Collections.Generic; using System.IO; using System.Text; using
///////////////////////////////////缩放图像 static void _ieInterpImageBilinear8UC1_Ver3_RowFilter(unsigned char* src, long* dst, int len, int* leftIdx, int* rightIdx, long* weight, int shift) { int i; for
#include <cstdio> /* * 传统的二分查找,数组有序且没有重复 */ int binary_S(int *a, int n, int key) { int l = 0, r = n-1; int mid; while (l <= r){ mid = (l + r) >> 1; if (a[mid] == key) return mid; if (a[mid] > key) r =
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.IO; namespace JianKunKing.Common.Ftp { /// <summary> /// ftp方式文件下载上传 /// </summary>
下面代码将实现打开关闭CD/DVD: using System.Runtime.InteropServices; using System.Text; ... public static void Main(
websiteToImage = new WebsiteToImage( "http://www.cnn.com", @"C:\Some Folder\Test.jpg"); websiteToImage.Generate();
public void SaveThumbnail(string path, string thumbnailPath, int newWidth, int newHeight) { System.Drawing.Image i = System.Drawing.Image.FromFile(path); System.Drawing.Image thumbnail = new System.Dr
1.登陆界面 主要代码: public partial class LoginForm : Form{ public static string uacc; public static string
using System; using System.Threading; using System.ServiceProcess; using System.Collections; using System.Configuration.Install; using System.Diagnostics; using System.Collections.Generic; using Syste
bar("hello world"); 原因在于foo( )和"hello world"串都会产生一个临时对象,而在C++中,这些临时对象都是const类型的。因此上面的表达式就是试图将一个const类型的对象转换为非const类型,这是非法的。
C/C++笔试题(90分钟完成答卷) 一、单选题 (每题2分,共16分) 1. 32位机器上假定a 为一个短整型(short int)数组名,则元素a[8]的地址为( A ) A.a+4 B.a+8
C调用C++函数库,一般不能直接调用,需要将C++库转换成C接口输出,方可以使用C调用,看下面的例子: aa.cpp #include "aa.h" int sample::method() { cout