代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/223151/14652492
m mapping.m
function A = mapping(n)
% To create a Morton Scan order matrix
if n == 2
A = [1 2; 3 4];
else
B = mapping(n/2);
A = [B B+(n/2)^2; B+(n/2)^2*2 B+(n/2)^2*3];
end
www.eeworm.com/read/223144/14654008
cpp 14_3.cpp
//14_3
#include
class X{
public:
X(int);
X(X&);
~X();
};
X::X(int s){ cout
www.eeworm.com/read/223144/14654012
txt 14_3.txt
//14_3
//运行结果为:
create a X object with 1
create a X object with 2 //创建临时对象
call a func with para X object
create a X object from other X object
erase a object //析构临时对象
creat
www.eeworm.com/read/223100/14659086
~pas mapx.~pas
unit MapX;
interface
uses MapXLib_TLB, Classes, Controls, Dialogs, SysUtils, Forms, Variants, Printers,
RulerFrm, AreaFrm, InforFrm, Graphics, Messages, CommCtrl, Windows;
type
TMapX =
www.eeworm.com/read/223100/14659136
pas mapx.pas
unit MapX;
interface
uses MapXLib_TLB, Classes, Controls, Dialogs, SysUtils, Forms, Variants, Printers,
RulerFrm, AreaFrm, InforFrm, Graphics, Messages, CommCtrl, Windows;
type
TMapX =
www.eeworm.com/read/223042/14663169
sql 101.sql
CREATE TABLE "dba"."fjxx_tab" ("fjh" numeric(10,0) NOT NULL DEFAULT NULL, "ft" char(10) DEFAULT NULL, "jg" numeric(5,0) DEFAULT NULL, "pz" char(2) DEFAULT NULL, "bz" char(20) DEFAULT NULL , PRIMARY KE
www.eeworm.com/read/223042/14663177
txt 重要的表.txt
CREATE TABLE "dba"."fjxx_tab" ("fjh" numeric(10,0) NOT NULL DEFAULT NULL, "ft" char(10) DEFAULT NULL, "jg" numeric(5,0) DEFAULT NULL, "pz" char(2) DEFAULT NULL, "bz" char(20) DEFAULT NULL , PRIMARY KE
www.eeworm.com/read/122870/14665659
pas meihuayishu.pas
unit MeiHuaYiShu;//梅花易数
interface
uses IniFiles,SysUtils;
type
TSanCai=(scTian,scRen,scDi);//三才--天,人,地
TSanYaoWei = 1..3;
TLiuYaoWei = 1..6;
//阴阳爻
TYinYangYao=(YinYao,YangYao);
www.eeworm.com/read/122710/14673762
txt readme.txt
DLL Sample
The SELECT sample shows you how to create a very simple DLL.