代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/231996/14212071
extract
#!/usr/bin/gawk -f
# hack to extract GMP-style documentation from source
# extremely fragile, requires function definition/declaration
# to end with ")\n" or ");" (e.g. no whitespace allowed)
# and do
www.eeworm.com/read/231737/14222329
m dcamain.m
% Program 7-1
%
% dcamain.m
%
% Simulation program to realize DCA algorithm
%
% Programmed by F. Kojima
%
%%%%%%%%%%%%%%%% preparation part %%%%%%%%%%%%%%%%%%%%%%%%%%%%
cnedge = 20.0; % C
www.eeworm.com/read/231688/14223262
c test6-1.c
#include "userlib.h"
#include
void error(short rtn)
{
switch (rtn)
{
case -1:
printf("error: communciation error\n");
break;
case 0:
/* No error */
www.eeworm.com/read/231656/14224544
h slnprocess.h
#pragma once
/////////////////////////////////////////////////////////////////////////////////
//
// slnprocess class
//
// S.Rodriguez - Sept 2002
//
//
// purpose : convert a .sln file f
www.eeworm.com/read/129728/14230890
cs reportpicker.aspx.cs
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System
www.eeworm.com/read/129726/14231415
c fopen.c
#include
#include
void main(int argc,char *argv[])
{
char buffer[80];
FILE *stream;
if (argc
www.eeworm.com/read/129471/14239986
h field.h
#if !defined(AFX_FIELD_H__BC74EB81_CC1F_4175_B32C_56A90CD0D166__INCLUDED_)
#define AFX_FIELD_H__BC74EB81_CC1F_4175_B32C_56A90CD0D166__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VE
www.eeworm.com/read/129469/14240248
h field.h
#if !defined(AFX_FIELD_H__284CDF34_D77A_4538_9790_62AA03CABA04__INCLUDED_)
#define AFX_FIELD_H__284CDF34_D77A_4538_9790_62AA03CABA04__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VE
www.eeworm.com/read/129458/14241703
txt java编程风格.txt
JAVA编程风格简析
很久以来都在体会着JAVA的风格,现在做一简单陈述,希望大家多提宝贵意见。
对于一种好的编程语言,学习它的编程风格是很重要的。每种语言都有自己的编写和注释约定,当然所有语言都建立在最基本的约定之上。编程中最重要的并不是让代码按自己希望的方式运行,而是程序中那种自明的编程风格(这对于程序员的益处相信众多程序员都身有体会)!但这还不够,程序还应该具有可读、相对持久和可 ...