代码搜索:increment
找到约 5,376 项符合「increment」的源代码
代码结果 5,376
www.eeworm.com/read/276066/4170678
java increment.java
/*
* Copyright 1998-1999 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or
www.eeworm.com/read/429858/1944829
java increment.java
/*
* This file is part of JGAP.
*
* JGAP offers a dual license model containing the LGPL as well as the MPL.
*
* For licensing information please see the file license.txt included with JGAP
www.eeworm.com/read/427984/1963692
java increment.java
/*
* JSwiff is an open source Java API for Macromedia Flash file generation
* and manipulation
*
* Copyright (C) 2004-2008 Ralf Terdic (contact@jswiff.com)
*
* This program is free softwar
www.eeworm.com/read/407756/2258886
do_increment
#!/bin/bash
# Scriptname: do_increment
increment () {
local sum; # sum is known only in this function
let "sum=$1 + 1"
return $sum # Return the value of sum to the script
}
echo
www.eeworm.com/read/407756/2259061
do_increment
#!/bin/ksh
# Scriptname: do_increment
# Using the return Command)
function increment {
typeset sum # sum is a local variable.
(( sum = $1 + 1 ))
return $sum # Return the value of su
www.eeworm.com/read/407756/2259124
do_increment
#!/bin/sh
# Scriptname: do_increment
increment () {
sum=`expr $1 + 1`
return $sum # Return the value of sum to the script.
}
echo -n "The sum is "
increment 5 # Call function increment; pass
www.eeworm.com/read/394673/2454952
java increment.java
/*
* This file is part of JGAP.
*
* JGAP offers a dual license model containing the LGPL as well as the MPL.
*
* For licencing information please see the file license.txt included with JGAP
www.eeworm.com/read/241364/13150574
sql increment_extents.sql
CREATE OR REPLACE TRIGGER after_suspend
AFTER SUSPEND
ON SCHEMA
DECLARE
CURSOR curs_get_extents IS
SELECT max_extents + 1
FROM user_tables
WHERE table_name = 'MONTHLY_SUMMARY';
v_
www.eeworm.com/read/323119/13349880
tst auto_increment.tst
#
# Test of auto_increment
#
# run this program with mysql -vvf test < this file
drop table if exists auto_incr_test,auto_incr_test2 ;
create table auto_incr_test (id int not null auto_increment, na
www.eeworm.com/read/323119/13349913
res auto_increment.res
--------------
drop table if exists auto_incr_test,auto_incr_test2
--------------
Query OK, 0 rows affected
--------------
create table auto_incr_test (id int not null auto_increment, name char(40),