代码搜索:expression
找到约 10,000 项符合「expression」的源代码
代码结果 10,000
www.eeworm.com/read/230049/14307721
java testexpression.java
//: com:bruceeckel:simpletest:TestExpression.java
// Regular expression for testing program output lines
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyrigh
www.eeworm.com/read/229893/14313320
java testexpression.java
//: com:bruceeckel:simpletest:TestExpression.java
// Regular expression for testing program output lines
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyrigh
www.eeworm.com/read/127767/14336572
txt e1077. finding elements by id in a dom document using xpath.txt
XPath is an expression language for selecting nodes in an XML file. See e1074 Finding Elements by Absolute Location in a DOM Document Using XPath for common XPath expression for selecting elements. Th
www.eeworm.com/read/127767/14337296
txt e072. determining if a string contains a substring.txt
See also e423 Quintessential Regular Expression Search Program.
String string = "Madam, I am Adam";
// Starts with
boolean b = string.startsWith("Mad"); // true
// E
www.eeworm.com/read/127767/14337835
txt e1078. finding elements by attributes in a dom document using xpath.txt
XPath is an expression language for selecting nodes in an XML file. See e1074 Finding Elements by Absolute Location in a DOM Document Using XPath for common XPath expression for selecting elements. Th
www.eeworm.com/read/127767/14337852
txt e1075. selecting from a set of child elements in a dom document using xpath.txt
XPath is an expression language for selecting nodes in an XML file. See e1074 Finding Elements by Absolute Location in a DOM Document Using XPath for common XPath expression for selecting elements. Th
www.eeworm.com/read/127116/14377641
java or.java
package com.javapatterns.interpreter;
public class Or extends Expression
{
/**
* @link aggregation
*/
private Expression left, right;
public Or(Expression left, Expre
www.eeworm.com/read/126655/14409947
cpp decorator_lab.cpp
// Purpose. Decorator design pattern lab
//
// Problem. Inheritance is being used to produce lots of incremental
// customizations. This is fine - until all the potential permutations of
// opt
www.eeworm.com/read/225918/14511145
c imagenet.c
/*
******************************************************************
* HISTORY
* 15-Oct-94 Jeff Shufelt (js), Carnegie Mellon University
* Prepared for 15-681, Fall 1994.
*
********