代码搜索:Method
找到约 10,000 项符合「Method」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5522982
m method-19.m
/* The following should NOT generate "may not respond to" warnings, since a forward-declared
@class (instance) should be treated like a 'Class') ('id'). */
/* { dg-do compile } */
#include
www.eeworm.com/read/162614/5523041
m va_method.m
/* Contributed by Nicola Pero - Thu Mar 8 16:27:46 CET 2001 */
#include
#include
#include
/* Test method with variable number of arguments */
@interface M
www.eeworm.com/read/340665/3276745
m method-1.m
/* Tests of duplication. */
/* { dg-do compile } */
@interface class1
- (int) meth1;
- (void) meth1; /* { dg-error "duplicate declaration of instance method" } */
@end
@interface class2
+ (void) m
www.eeworm.com/read/340665/3276749
m method-2.m
/* Test for lookup of class (factory) methods. */
/* Author: Ziemowit Laski . */
/* { dg-do compile } */
@interface MyBase
- (void) rootInstanceMethod;
@end
@interface MyInterme
www.eeworm.com/read/340665/3278546
m va_method.m
/* Contributed by Nicola Pero - Thu Mar 8 16:27:46 CET 2001 */
#include
#include
/* Test method with variable number of arguments */
@interface MathClass
{
Class i
www.eeworm.com/read/340665/3281788
c final_method.c
#include
JNIEXPORT jstring JNICALL
Java_final_1method_meth (JNIEnv *env, jobject thisv)
{
return (*env)->NewStringUTF (env, "zardoz has spoken");
}
www.eeworm.com/read/340665/3281804
java final_method.java
// Minimal test a non-static final method.
public class final_method
{
static
{
System.loadLibrary ("final_method");
}
public final native String meth ();
public static void main (Str