代码搜索:Struct
找到约 10,000 项符合「Struct」的源代码
代码结果 10,000
www.eeworm.com/read/337953/12332646
doc struct.doc
www.eeworm.com/read/337953/12332682
h struct.h
#include
#include
#include
#include
using namespace std;
struct usr
{
string usrname;
string password;
int uid;
int gid;
};
struct inode
{
int
www.eeworm.com/read/149322/12387050
cs struct.cs
using System;
namespace DataTypeDemo
{
///
/// stuct 的摘要说明。
///
public class Struct : linkList
{
private node top;
//private int length;
private node botton
www.eeworm.com/read/336899/12408181
cxx struct.cxx
typedef struct foo_s /* Foo structure */
{
float foo; /* Real number */
int bar; /* Integer */
foo_s(float f, int b);
~foo_s();
// 'get_bar()' - Get the value of bar.
int // O -
www.eeworm.com/read/336451/12443022
h struct.h
/**
*
* 文件名: Struct.h
* 描述: 定义结构体
* 作者: 魏罡
* 时间: 2005.3.27 - 2005.10.4
*
* File name: Struct.h
* Description: define the structures
* Author: WEI-Gang
* Time: 2005.3.27 - 2005.10
www.eeworm.com/read/148669/12445491
c struct.c
#include
#include
#include "eeprom.h"
#include "m8pic73.h"
unsigned int out_value=0; //输出数据
unsigned char st_byte=0; //参数指针
unsigned char st_bit=0;
www.eeworm.com/read/233811/14134645
h struct.h
/*
* Copyright 1997, Regents of the University of Minnesota
*
* struct.h
*
* This file contains data structures for ILU routines.
*
* Started 9/26/95
* George
*
* $Id: struct.h,v 1.1 1998/11
www.eeworm.com/read/131142/14158631
sql struct.sql
CREATE TABLE `work_db` (
`id` int(11) NOT NULL auto_increment,
`prog_name` varchar(100) NOT NULL default '',
`short_name` varchar(100) NOT NULL default '',
`introduction` text,
`autho
www.eeworm.com/read/233206/14163209
cpp struct.cpp
#include
struct Struct1
{
int x;
int y;
};
struct Struct2 : Struct1
{
int z;
};
int main()
{
Struct2 s;
printf ("sizeof (Struct1) is %d\n
www.eeworm.com/read/233206/14163210