answersLogoWhite

0

What is the functions of file class?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

file class contain methods or functions that handle various file stream operations.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the functions of file class?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the functions of an disassembler?

It basically converts the byte codes of a class file i.e. machine code of JVM to its actual source code i.e. the java program. The Dissassembler is not a separate program.A few function which are added in our main program which reads the class file. Thus this is the right time to understand what these functions do.


What makes up a Java class?

Fields and methods. Fields are variables defined at the class level, i.e., they are available for all methods. Methods are the equivalent of functions / procedures, but they are defined for a specific class.


What is the concept of class file?

That means: the file where a class is stored.


What functions get executed when you inherit from a class with the same functions name?

In general, the child class's functions will be used in place of the parent.


What are the functions of file sharing?

The functions of file sharing is too send files to another device fast and quick


What is a USERENV.DLL file?

its a .dll file that provides API functions to your user profile.. like JAVA API functions..


Is a utility that performs functions related to file management?

File Manager


When java uses compiler?

What i know is java we will use compiler when it want to get class file(file with .class extension) from java file(file with .java extension).


How you declare class scoped variables and member functions?

To scope class members to the class (rather than to instances of the class), declare them as static members of the class. Static members are accessible even when no instances of the class exist. As such, static member functions do not have access to a 'this' pointer, unlike ordinary (nonstatic) member functions.


How do you declare a class?

An instance of a class is also known as an object. In the Java language, you use the new operator. Here is an example:Integer x; // Using the wrapper class, Integer. This doesn't create the object yet.x = new Integer(5); // This will create the instance.These commands can be combined into one:Integer x = new Integer(5);


How can you access private functions of a class from the Main function in Cpp?

Any member functions and data members declared as 'private' in a class, can only be accessed directly by functions within the class.They cannot be accessed directly by derived objects, nor from anywhere outside an object of the class, such as from the Main function.To access private class members, you must rely on what are called accessor functions. Accessor functions are functions inside the class, either public or protected, which automatically have access to private members.If a function from Main, or elsewhere outside the class hierarchy, needs access, then you need to use publicaccessor functions. For derived class access, you can use protected accessor functions.


What is the java file in java?

The java file has the actual JAVA code present in it,..i.e the entire coding is done in that file.. you can view it using any text editor.. After compiling it you get a class file of every class present in the java file When you open a class file in a text editor, you won't see anything that makes sence. You won't find the original code that you wrote in the java file. That is because a class file is a product of the compilation of a java file.