代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/389522/2540428
java conndb.java
package com.bwm.beans;
import java.sql.*;
public class connDB{
Connection conn=null;
Statement stmt=null;
ResultSet rs=null;
public connDB(){
try{
www.eeworm.com/read/378666/2683347
java~4~ databasemanager.java~4~
package flight.assist;
import java.sql.*;
public class DataBaseManager {
private static DataBaseManager instance;
private Connection con;
private ResultSet rs;
private Statement stmt
www.eeworm.com/read/378666/2683354
java~3~ databasemanager.java~3~
package flight.assist;
import java.sql.*;
public class DataBaseManager {
private static DataBaseManager instance;
private Connection con;
private ResultSet rs;
private Statement stmt
www.eeworm.com/read/371416/2780090
java employee.java
package com.horstmann.corejava;
// the classes in this file are part of this package
import java.util.*;
// import statements come after the package statement
/**
* @version 1.10 1999-12
www.eeworm.com/read/366702/2866013
c stmtexpr6.c
// { dg-do run }
// { dg-options "" }
int a[128];
int main() {
// Check that array-to-pointer conversion occurs in a
// statement-expression.
if (sizeof (({ a; })) != sizeof (int *))
retur
www.eeworm.com/read/366702/2873154
f90 internal_write.f90
! PR 14901
! Internal writes were appending CR after the last char
! written by the format statement.
CHARACTER*10 A
WRITE(A,'(3HGCC)')
IF (A.NE.'GCC ') THEN
! PRINT
www.eeworm.com/read/366702/2876389
f90 io_invalid_1.f90
! { dg-do compile }
! PR fortran/20842
WRITE(UNIT=6,END=999) 0 ! { dg-error "END tag .* not allowed in output statement" }
999 CONTINUE
END
www.eeworm.com/read/366702/2876708
f90 global_references_2.f90
! { dg-do compile }
! This program tests the patch for PR25964. This is a
! regression that would not allow a common block and a statement
! to share the same name.
!
! Contributed by Paul Thomas
www.eeworm.com/read/366702/2877086
f90 label_5.f90
! { dg-do compile }
! { dg-options "-Wall" }
! PR fortran/27553
program pr27553
10: a=10 ! { dg-error "character in statement" }
end program
www.eeworm.com/read/366702/2877986
c 20011223-1.c
/* Origin: Joseph Myers . */
/* Case labels in a switch statement are converted to the promoted
type of the controlling expression, not an unpromoted version.
Reported as PR c/