代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/473283/1400658
java getkey.java
import java.sql.*;
public class GetKey{
public static void main(String args[])throws Exception{
Connection con=new ConnectionProvider().getConnection();
Statement stmt = con.createStatem
www.eeworm.com/read/470720/1447647
c 900205_03.c
// g++ 1.36.1 bug 900205_03
// Section 6.6.3 of the cfront 2.0 Reference Manual says "A return statement
// without an expression can be used only in functions that do not return
// a value, that is,
www.eeworm.com/read/470720/1450804
c loop-12.c
/* Checks that pure functions are not treated as const. */
char *p;
static int __attribute__ ((pure))
is_end_of_statement (void)
{
return *p == '\n' || *p == ';' || *p == '!';
}
void foo (void)
www.eeworm.com/read/470720/1451944
c 20020207-1.c
/* This testcase ICEd because statement expression type was set, but was not
as used. */
struct A {
unsigned int a, b, c;
};
extern void abort (void);
extern void exit (int);
struct A bar (vo
www.eeworm.com/read/470693/1455590
h elf.h
/* Definitions for embedded ia64-elf target. */
/* This macro is a C statement to print on `stderr' a string describing the
particular machine description choice. */
#define TARGET_VERSION fpri
www.eeworm.com/read/470693/1455591
h linux.h
/* Definitions for ia64-linux target. */
/* This macro is a C statement to print on `stderr' a string describing the
particular machine description choice. */
#define TARGET_VERSION fprintf (st
www.eeworm.com/read/470693/1459593
c 900205_03.c
// g++ 1.36.1 bug 900205_03
// Section 6.6.3 of the cfront 2.0 Reference Manual says "A return statement
// without an expression can be used only in functions that do not return
// a value, that is,
www.eeworm.com/read/470693/1462750
c loop-12.c
/* Checks that pure functions are not treated as const. */
char *p;
static int __attribute__ ((pure))
is_end_of_statement (void)
{
return *p == '\n' || *p == ';' || *p == '!';
}
void foo (void)
www.eeworm.com/read/470693/1463890
c 20020207-1.c
/* This testcase ICEd because statement expression type was set, but was not
as used. */
struct A {
unsigned int a, b, c;
};
extern void abort (void);
extern void exit (int);
struct A bar (vo
www.eeworm.com/read/467249/1504006
java databasetool.java
package chapter11;
import java.sql.*;
public class DataBaseTool {
private String strDriver;
private String coonnstring;
private Connection conn;
private Statement state;
public stat