代码搜索:modifying
找到约 672 项符合「modifying」的源代码
代码结果 672
www.eeworm.com/read/127767/14336497
txt e970. modifying text in a jtextcomponent.txt
// Create the text component
JTextComponent textComp = new JTextField("Initial Text");
Document doc = textComp.getDocument();
try {
// Insert some text at the beginning
www.eeworm.com/read/192096/8406446
htm ch07_10.htm
Recipe 7.9. Modifying a File in Place with -i Switch (Perl Cookbook)
www.eeworm.com/read/432289/8613327
java visitable.java
//: C25:Visitable.java
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// An interface to add visitor functionali
www.eeworm.com/read/178378/9404673
java visitable.java
//: C25:Visitable.java
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// An interface to add visitor functionali
www.eeworm.com/read/373012/9479230
bash unix2dos.bash
#!/bin/bash -
for A in $*
do
echo modifying $A
mv $A $A.old
awk -f unix2dos.awk $A.old > $A
/bin/rm -f $A.old
done
www.eeworm.com/read/124166/14592167
java typedbinmember.java
//: refactor:doubledispatch:TypedBinMember.java
// An interface for adding the double
// dispatching method to the trash hierarchy
// without modifying the original hierarchy.
package refactor.d
www.eeworm.com/read/124166/14592176
java visitable.java
//: refactor:trashvisitor:Visitable.java
// An interface to add visitor functionality
// to the Trash hierarchy without
// modifying the base class.
package refactor.trashvisitor;
import refact
www.eeworm.com/read/168845/5433742
rst transform_iterator_abstract.rst
The transform iterator adapts an iterator by modifying the
``operator*`` to apply a function object to the result of
dereferencing the iterator and returning the result.
www.eeworm.com/read/366898/9793807
cpp character_array.cpp
#include
using namespace std;
void main()
{
/*
//Modifying any of the characters in the array is a runtime error
char* p = "how are you!"; //This is technically an error 应该:cons
www.eeworm.com/read/414315/11121153
h btusb.h
/****************************************************************************/
/* Copyright 2000 Compaq Computer Corporation. */
/*