Query: irandstream
OS: debian
Section: 3bobcat
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
FBB::IRandStream(3bobcat) Random numbers istream FBB::IRandStream(3bobcat)NAMEFBB::IRandStream - Istream producing random numbersSYNOPSIS#include <bobcat/irandstream> Linking option: -lbobcatDESCRIPTIONFBB::IRandStream objects may be used to extract random numbers in a given range from a stream.NAMESPACEFBB All constructors, members, operators and manipulators, mentioned in this man-page, are defined in the namespace FBB.INHERITS FROMstd::istream, FBB::RandBuffer (private)CONSTRUCTORSo IRandStream(int max): This FBB::IRandStream() constructor initializes the random generator. The default seed (i.e., 1) for the srand(3) function is used, meaning that every new run of the program will generate the same sequence of random values. Another constructor (see below) is pro- vided when this is not considered appropriate. Random values between 1 and max (inclusive) are returned. o IRandStream(int min, int max): This FBB::IRandStream() constructor initializes the random generator. The default seed (i.e., 1) for the srand(3) function is used, meaning that every new run of the program will generate the same sequence of random values. Another constructor (see below) is pro- vided when this is not considered appropriate. Random values between min and max (inclusive) are returned. o IRandStream(int min, int max, int seed): This FBB::IRandStream() constructor initializes the random generator. The seed is used to initialze the random number generator. To start the random generator at some unpredictable point, time(0) could be used. Random values between min and max (inclusive) are returned.INHERITED MEMBERSSince the class uses public derivation from std::istream, all members of this class can be used.EXAMPLE#include <iostream> #include <bobcat/irandstream> using namespace std; using namespace FBB; int main(int argc, char **argv) { IRandStream in(1000); for (; argc--; ) { size_t random; in >> random; cout << random << endl; } return 0; }FILESbobcat/irandstream - defines the class interfaceSEE ALSObobcat(7), randbuffer(3bobcat)BUGSNone Reported.DISTRIBUTION FILESo bobcat_3.01.00-x.dsc: detached signature; o bobcat_3.01.00-x.tar.gz: source archive; o bobcat_3.01.00-x_i386.changes: change log; o libbobcat1_3.01.00-x_*.deb: debian package holding the libraries; o libbobcat1-dev_3.01.00-x_*.deb: debian package holding the libraries, headers and manual pages; o http://sourceforge.net/projects/bobcat: public archive location;BOBCATBobcat is an acronym of `Brokken's Own Base Classes And Templates'.COPYRIGHTThis is free software, distributed under the terms of the GNU General Public License (GPL).AUTHORFrank B. Brokken (f.b.brokken@rug.nl). libbobcat1-dev_3.01.00-x.tar.gz 2005-2012 FBB::IRandStream(3bobcat)
Related Man Pages |
---|
level(3bobcat) - debian |
level(3bobcat) - hpux |
ifdstream(3bobcat) - centos |
ifdstream(3bobcat) - mojave |
level(3bobcat) - linux |
Similar Topics in the Unix Linux Community |
---|
Random numbers without repetition |
Random numbers from 0 to 1000 |
Inline function inside Classes |
Random Passwords |