代码搜索:converting

找到约 1,282 项符合「converting」的源代码

代码结果 1,282
www.eeworm.com/read/127767/14337360

txt e341. converting an array to a collection.txt

// Fixed-size list List list = Arrays.asList(array); // Growable list list = new LinkedList(Arrays.asList(array)); // Duplicate elements are discarded Set set = ne
www.eeworm.com/read/127767/14337384

txt e340. converting a collection to an array.txt

// Create an array containing the elements in a list Object[] objectArray = list.toArray(); MyClass[] array = (MyClass[])list.toArray(new MyClass[list.size()]); // Create an array
www.eeworm.com/read/127767/14337903

txt e859. converting a keystroke to a string.txt

The KeyStroke.toString() method does not return a string that can be parsed by KeyStroke.getKeyStroke(). The method keyStroke2String() in this example returns a string that is parseable by KeyStroke.g
www.eeworm.com/read/179947/9329556

txt readme.txt

National Geodetic Survey XyzWin XyzWin is a PC Windows program for converting NAD83 Latitude and Longitude to earth centered
www.eeworm.com/read/469590/6932036

readme

UDP client and server code. The client sends a single 32bit integer to the server without converting to network byte order. The server looks for incoming datagrams, and looks in each one for a 32 b
www.eeworm.com/read/452695/7436318

c program3_04.c

/* Program 3.4 Converting uppercase to lowercase */ #include int main(void) { char letter = 0; /* Stores a character */ printf("Enter an upp
www.eeworm.com/read/131315/5937056

readme

Include here are some very simple shell scripts that allow you to tie in the xerox utilities with the ucb lpr system. This is what we are currently using at Berkeley. Due to overworked staff, this is
www.eeworm.com/read/162614/5517274

c conv2.c

// PR c++/13932 int i = 1.; // { dg-warning "converting" }
www.eeworm.com/read/471682/6887901

c program3_04.c

/* Program 3.4 Converting uppercase to lowercase */ #include int main(void) { char letter = 0; /* Stores a character */ printf("Enter an upp
www.eeworm.com/read/275831/10793795

rb 14 - converting html documents from the web into text.rb

require 'open-uri' example = open('http://www.example.com/') # => # html = example.read #--- plain_text = html.sub(%r{(.*?)}mi, '\1').gsub(//m, ' '). gsub(