代码搜索:test1
找到约 3,239 项符合「test1」的源代码
代码结果 3,239
www.eeworm.com/read/250058/12439081
js optimizing-browser.js
function test1()
{
return 'Test string'.indexOf('str') != -1;
}
function test2()
{
return /str/.test('Test string');
}
function test3(a, b)
{
return a + b;
}
function test4()
{
r
www.eeworm.com/read/131660/14133915
txt 21-4.txt
/* 范例:21-4 */
#include
class super{public: super(){cout
www.eeworm.com/read/228255/14394852
ini test.ini
signal void ky_1()
{
SIN = 0xf0; //串口接收到数据0xf0,注意它是不需要时间的
twatch(4090); //等待4090个机器周期
SIN = 0xf1;
twatch(4090);
SIN = 0xf0;
twatch(4090);
SIN = 0xf0;
www.eeworm.com/read/126322/14429832
txt 21-4.txt
/* 范例:21-4 */
#include
class super{public: super(){cout
www.eeworm.com/read/123822/14612255
c test.c
#include "myhdr.h"
int* test1();
int print(int *p );
int
main()
{
int *p;
p = NULL;
p = test1();
print( p );
return( 0 );
}
int *
test1()
{
int a[11];
int i;
i = 0;
www.eeworm.com/read/123822/14612257
c test1.c
#include "myhdr.h"
int* test1();
int print(int *p );
int
main()
{
int *p;
p = NULL;
p = test1();
print( p );
return( 0 );
}
int *
test1()
{
int a[11];
int i;
i = 0;
www.eeworm.com/read/223073/14660970
txt 21-4.txt
/* 范例:21-4 */
#include
class super{public: super(){cout
www.eeworm.com/read/223000/14665358
txt 21-4.txt
/* 范例:21-4 */
#include
class super{public: super(){cout
www.eeworm.com/read/116603/14962680
java shortcircuit.java
//: c03:ShortCircuit.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Demonstrates short-circuiting behavior.
// with logica