代码搜索:参数对比
找到约 10,000 项符合「参数对比」的源代码
代码结果 10,000
www.eeworm.com/read/288165/4009430
c file2.c
# include
extern int sum(int a, int b) /* 定义外部函数sum() */
{
int c;
c = a + b;
return c; /* 返回参数的商 */
}
www.eeworm.com/read/286245/4040562
dfm formset.dfm
object frmFormSet: TfrmFormSet
Left = 248
Top = 111
BorderIcons = []
BorderStyle = bsDialog
Caption = '窗体参数设置'
ClientHeight = 164
ClientWidth = 357
Color = 16643297
Font.Cha
www.eeworm.com/read/274119/4188925
c file1.c
# include
extern int multiply(int a, int b) /* 定义外部函数multiply() */
{
int c;
c = a * b;
return c; /* 返回参数的乘积 */
}
www.eeworm.com/read/274119/4188926
c file2.c
# include
extern int sum(int a, int b) /* 定义外部函数sum() */
{
int c;
c = a + b;
return c; /* 返回参数的商 */
}
www.eeworm.com/read/436106/1854510
dfm autotest.dfm
object frmTestArg: TfrmTestArg
Left = 183
Top = 110
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption =
'定时抄表参数设置 Setup Time Parameters of Timing Meter Reading ' +
www.eeworm.com/read/413369/2162086
js guestinfomanage.js
// JScript 文件
var GuestInfoStore;
RoomGuestInfoManage=function(node){
//分页每页显示数量
var pageSize = 12;
//指定列参数
var fields = ["guestid","guestcardid","guestname","guestsex","guestmobile",
www.eeworm.com/read/396330/2422596
js guestinfomanage.js
// JScript 文件
var GuestInfoStore;
RoomGuestInfoManage=function(node){
//分页每页显示数量
var pageSize = 12;
//指定列参数
var fields = ["guestid","guestcardid","guestname","guestsex","guestmobile",
www.eeworm.com/read/368854/2803806
java sysconfig.java
package cn.hxex.exam.config;
import java.util.Hashtable;
/**
* 系统参数对象
*
* @author galaxy
*
*/
public class SysConfig
{
private Hashtable properties;
/**
*