代码搜索:object
找到约 10,000 项符合「object」的源代码
代码结果 10,000
www.eeworm.com/read/454368/7393037
generate_shared_object
#!/bin/tcsh
echo decompressing file $1
set FILELIST=`ar -t $1`
echo "Object files:"
foreach i ($FILELIST)
echo $i
end
echo generating $1:r.so
ar -x $1
ld -shared -o $1:r.so $FILELIST
rm $FILELIS
www.eeworm.com/read/442308/7655644
c object_heap.c
/*
* object_heap.c - Management of VA API resources
*
* vdpau-video (C) 2009 Splitted-Desktop Systems
*
* This program is free software; you can redistribute it and/or modify
* it under the
www.eeworm.com/read/442308/7655650
h object_heap.h
/*
* object_heap.h - Management of VA API resources
*
* vdpau-video (C) 2009 Splitted-Desktop Systems
*
* This program is free software; you can redistribute it and/or modify
* it under the
www.eeworm.com/read/439747/7702382
sql object_schema.sql
-- This script does the following:
-- 1. Creates object_user
-- 2. Creates the object types and database tables
-- 3. Populates the database tables with sample data
-- 4. Creates the PL/SQ
www.eeworm.com/read/439580/7705518
java object1.java
public class Object1{
int a,b;
Object1(int a, int b){
this.a=a;
this.b=b;
System.out.println("按眉狼 积己");
}
public static void main(String[] args){
Object1 ob1, ob2;
o
www.eeworm.com/read/439580/7705529
java object8.java
public class Object8{
private int a;
public Object8(int a){
this.a=a;
}
public void twice(Object8 o){
o.a*=2;
}
public int getA(){
return a;
}
public static void ma
www.eeworm.com/read/439580/7705537
java object9.java
public class Object9{
static void toHello(String s){
s="Hello";
}
public static void main(String[] args){
String hi="Hi";
toHello(hi);
System.out.println(hi);
}
}
www.eeworm.com/read/439580/7705568
java object14.java
public class Object14{
int a,b;
Object14(int a, int b){
this.a=a;
this.b=b;
}
Object14 twice(){
return new Object14(2*a, 2*b);
}
public static void main(String[] args)
www.eeworm.com/read/439580/7705583
java object2.java
public class Object2{
Object2(){
System.out.println("按眉狼 积己");
}
void hi(){
System.out.println("救崇~~~");
}
public static void main(String[] args){
Object2 ob;
ob.hi();
www.eeworm.com/read/439580/7705591
java object10.java
public class Object10{
static void play(String name){
String a=name+"具 愁磊.";
System.out.println(a);
}
public static void main(String[] args){
play(new String("枚荐"));
}
}