代码搜索:Inner
找到约 4,362 项符合「Inner」的源代码
代码结果 4,362
www.eeworm.com/read/162519/5546730
java inner_data.java
// Test referencing protected data from parent of inner class.
import java.util.Random;
public class inner_data
{
private class Randomer extends Super {
public long xxx ()
{
return seed;
www.eeworm.com/read/162519/5546785
java inner_priv.java
// Test to ensure that private inner classes are ok.
public class inner_priv
{
private class K
{
int z;
}
K foo;
}
www.eeworm.com/read/162519/5546824
java static_inner.java
// File Parent.java
class Parent {
public static class Kid {
public Kid(int age) {
this.age = age;
}
int age;
}
}
// File NewParent.java
public class static_inner extends Paren
www.eeworm.com/read/162519/5546833
java inner_inherit.java
// Test to insure that we can refer to methods inherited through an
// inner class.
public class inner_inherit
{
private class Agent extends Thread {
}
public void f ()
{
Agent a =
www.eeworm.com/read/162519/5546868
java inner_1.java
// inner class regression test.
package bar.foo;
class other {
class foo {}
}
class inner_1 {
static void bar () {
inner_1 xxxx; // Refers to inner_1
bar.foo.another xyz; // Refer
www.eeworm.com/read/162519/5546875
java inner_pub.java
// Test to ensure that public inner classes work.
public class inner_pub
{
public class really_inner
{
int z;
}
really_inner foo;
}
www.eeworm.com/read/193607/8213569
cpp inner1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/193038/8257190
jpg usedstate.inner.jpg
www.eeworm.com/read/174450/9586871
fp inner_product.fp
!!FP1.0
#here compute the inner product of vector x and vector y which in 2d Textures
#add all elements together into ONE element
DECLARE TexOffset0 ={0.5,0,0,0};
DECLARE TexOffset1 ={0,0.5,0,0};