代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/127767/14337548
txt e346. storing primitive types in a collection.txt
Collections can only store objects, not primitive types like int and double. Primitive types must be placed in a wrapper object before they can be placed in a collection. This example demonstrates the
www.eeworm.com/read/127767/14337874
txt e163. creating a non-byte java type buffer on a bytebuffer.txt
You can create views on a ByteBuffer to support buffers of other Java primitive types. For example, by creating a character view on a ByteBuffer, you treat the ByteBuffer like a buffer of characters.
www.eeworm.com/read/228813/14362999
pas balancer.pas
unit Balancer;
interface
uses Classes, BaseClass, ActiveX, DirectShow9, MMSystem, Windows, DSUTil,
DSPack;
const
Name_Balancer = 'Audio Balancer by Style.Chen';
CLSID_Balancer: TGUID =
www.eeworm.com/read/228773/14363668
tk puzzle.tk
#!/usr/bin/wish -f
# First we create the image. Then we configure the frame which will hold the pieces of
# the image that will form the puzzle. This we pack with a little padding.
set image [image
www.eeworm.com/read/228773/14363717
tk canvas.tk
#!/usr/bin/wish -f
# First we create the canvas and then some objects to display on it.
set c [canvas .c -width 400 -height 300 -relief sunken -bd 2]
set image [image create photo -file caption.gif
www.eeworm.com/read/127261/14363809
readme
The file floppy.img.gz contains a compressed image of a floppy with
Smart Boot Manager.
Booting from this diskette will allow you to boot from the CD even if
your BIOS doesn't support it directly.
www.eeworm.com/read/228470/14383144
sql 1.sql
create database chanpin
go
use chanpin
create table breed --类别表
(
breedID int identity(1,1) primary key not null,--类别ID
breedName varchar(20) ,
www.eeworm.com/read/127019/14388175
pas idsslopenssl.pas
unit IdSSLOpenSSL;
interface
uses
Classes,
IdException,
IdStackConsts,
IdSocketHandle,
IdSSLOpenSSLHeaders,
IdComponent,
IdIOHandler,
IdGlobal,
IdTCPServer,
IdTCPCo
www.eeworm.com/read/227935/14406181
txt 动态交叉查询.txt
有一个这样的结构:
Id no value
A 1 3
A 2 4
A 3 5
B 1 6
B 2 7
B 3 8
查询结果:
Id value1 value2 value3
A 3 4 5
B 6 7 8
查询语句怎么写
=================
www.eeworm.com/read/227935/14406192
txt 有续排序与无续排序.txt
/*************无续取某行上一条记录****************/
/*测试表*/
create table #a (a int,b int,c char(1))
insert into #a select 3,3,'a'
insert into #a select 2,3,'b'
insert into #a select 1,3,'c'
insert into #