英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

seek    音标拼音: [s'ik]
vt. 寻求,寻找,探索,追求,搜索,请求
vi. 寻找,搜索

寻求,寻找,探索,追求,搜索,请求寻找,搜索

seek
查找; 寻找

seek
寻觅

seek
n 1: the movement of a read/write head to a specific data track
on a disk
v 1: try to get or reach; "seek a position"; "seek an
education"; "seek happiness"
2: try to locate or discover, or try to establish the existence
of; "The police are searching for clues"; "They are searching
for the missing man in the entire county" [synonym: {search},
{seek}, {look for}]
3: make an effort or attempt; "He tried to shake off his fears";
"The infant had essayed a few wobbly steps"; "The police
attempted to stop the thief"; "He sought to improve himself";
"She always seeks to do good in the world" [synonym: {try},
{seek}, {attempt}, {essay}, {assay}]
4: go to or towards; "a liquid seeks its own level"
5: inquire for; "seek directions from a local"

Seek \Seek\, a.
Sick. [Obs.] --Chaucer.
[1913 Webster]


Seek \Seek\, v. t. [imp. & p. p. {Sought}; p. pr. & vb. n.
{Seeking}.] [OE. seken, AS. s[=e]can, s[=e]cean; akin to OS.
s[=o]kian, LG. s["o]ken, D. zoeken, OHG. suohhan, G. suchen,
Icel. saekja, Sw. s["o]ka, Dan. s["o]ge, Goth. s[=o]kjan, and
E. sake. Cf. {Beseech}, {Ransack}, {Sagacious}, {Sake},
{Soc}.]
1. To go in search of; to look for; to search for; to try to
find.
[1913 Webster]

The man saked him, saying, What seekest thou? And he
said, I seek my brethren. --Gen. xxxvii.
15, 16.
[1913 Webster]

2. To inquire for; to ask for; to solicit; to beseech.
[1913 Webster]

Others, tempting him, sought of him a sign. --Luke
xi. 16.
[1913 Webster]

3. To try to acquire or gain; to strive after; to aim at; as,
to seek wealth or fame; to seek one's life.
[1913 Webster]

4. To try to reach or come to; to go to; to resort to.
[1913 Webster]

Seek not Bethel, nor enter into Gilgal. --Amos v. 5.
[1913 Webster]

Since great Ulysses sought the Phrygian plains.
--Pope.
[1913 Webster]


Seek \Seek\, v. i.
To make search or inquiry; to endeavor to make discovery.
[1913 Webster]

Seek ye out of the book of the Lord, and read. --Isa.
xxxiv. 16.
[1913 Webster]

{To seek}, needing to seek or search; hence, unprepared.
"Unpracticed, unprepared, and still to seek." --Milton.
[Obs.]

{To seek after}, to make pursuit of; to attempt to find or
take.

{To seek for}, to endeavor to find.

{To seek to}, to apply to; to resort to; to court. [Obs.]
"All the earth sought to Solomon, to hear his wisdom." --1
Kings x. 24.

{To seek upon}, to make strict inquiry after; to follow up;
to persecute. [Obs.]
[1913 Webster]

To seek
Upon a man and do his soul unrest. --Chaucer.
[1913 Webster]

97 Moby Thesaurus words for "seek":
address, aim, angle for, ask for, aspire, be after, be curious,
be determined, beat about for, beg, bid for, burn with curiosity,
canvass, cast about, chase, chivy, court, delve, delve for, demand,
dig, dig around for, dig for, dig up, dog, endeavor, essay,
ferret out, fish, fish for, follow, follow up, gape, gawk,
give chase, go after, go gunning for, gun for, hollo after, hope,
hound, hunt, hunt for, hunt up, inquire, interrogate, invite,
labor, look, look for, look up, make after, mouse, nose,
nose around for, nose out, peer, pop the question, prosecute,
prowl after, pursue, query, quest, quest after, question, quiz,
raise the hunt, request, resolve, root, rubber, rubberneck,
run after, search, search for, search out, see to, seek for,
seek out, smell, solicit, stare, still-hunt, strain, strive,
struggle, study, sue, sue for, sweat, sweat blood, take out after,
try, try to find, undertake, want to know, woo



安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • python - seek() function? - Stack Overflow
    A seek() operation moves that pointer to some other part of the file so you can read or write at that place So, if you want to read the whole file but skip the first 20 bytes, open the file, seek(20) to move to where you want to start reading, then continue with reading the file
  • How to . seek () to the end of a text file - Stack Overflow
    Your parameters to seek are incorrect, seek takes 2 parameters, an offset (how many bytes) and whence which describes from where to seek (start:0, current:1, end:2) So what you need is: import io sessionRecord seek(0, io SEEK_END) Or: sessionRecord seek(0, 2) # Py2 But you can avoid doing this by opening the file in append mode:
  • How does Pythons seek function work? - Stack Overflow
    file seek(offset[, whence]) Set the file’s current position, like stdio‘s fseek() The whence argument is optional and defaults to os SEEK_SET or 0 (absolute file positioning); other values are os SEEK_CUR or 1 (seek relative to the current position) and os SEEK_END or 2 (seek relative to the file’s end)
  • SQL Server Plans : difference between Index Scan Index Seek
    Index Seek When SQL Server does a seek it knows where in the index that the data is going to be, so it loads up the index from disk, goes directly to the part of the index that it needs and reads to where the data that it needs ends
  • c++ - fstream seekg(), seekp(), and write() - Stack Overflow
    What this means is that when you use a std::basic_fstream, which by default uses a std::basic_filebuf, the single file position is moved by both seekp() and seekg(); unless you use a separate variable to store one of the positions so you can then seek back to it, you cannot keep track of put and get positions independently
  • What is the difference between Lookup, Scan and Seek?
    Every individual seek, scan, lookup, or update on the specified index by one query execution is counted as a use of that index and increments the corresponding counter in this view Information is reported both for operations caused by user-submitted queries, and for operations caused by internally generated queries, such as scans for gathering
  • Why is the beginning of a C file stream called `SEEK_SET`?
    If whence is set to SEEK_SET, SEEK_CUR, or SEEK_END, the offset is relative to the start of the file, the current position indicator, or end-of-file, respectively From the manpage of lseek: SEEK_SET The file offset is set to offset bytes SEEK_CUR The file offset is set to its current location plus offset bytes
  • How to improve performance on a clustered index seek
    A clustered index range seek that returns 138 rows is not your problem Technically you can improve the seek performance by making the clustered index narrower: evict all varlenght into a separate allocation unit by setting 'large value types out of row' to 1 and recreating the table from scratch) enable page compression (SQL 2008 EE only)
  • Stream. Seek (0, SeekOrigin. Begin) or Position = 0
    Additionally : when calling Seek(), even if no actual seek on the file system is needed (the seek position is within the buffer boundary), it will always cause data in the buffer to be copied (see Buffer InternalBlockCopy() calls) This might impact performance if you do a lot of seeks (eg: parsing a binary file)
  • c - behaviour of fseek and SEEK_END - Stack Overflow
    With this in mind, the very last byte of the file is the one found at (-1, SEEK_END) and thus the (-3, SEEK_END) byte is the 8 Note that this is consistent with how C usually handles this kind of thing





中文字典-英文字典  2005-2009