473,385 Members | 1,732 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Should an object that totally encapsulates functionality have a "Run" function?

Hi all-

I've never seen this particular issue addressed, but was wondering if
there's anything to support one way or another. Say I have a class:

class ManipulateData
{
public:
ManipulateData(const char* Path-To-Some-Text-File)
{ ... }

bool Run();
long DataCount();

... etc ...
};

What I'm wondering is if the Run() function is really necessary. If a class
so completely encapsulates a particular type of functionality that under C
it probably would have been written as a single function, with no further
setting of members, is it really necessary or proper to split the start into
both the constructor *and* the Run()? True the Run() returns a bool that
would presumably indicate success, but my thought is that because the bool
only indicates sucess or failure, and in the case failure might be for
multiple reasons, it would be better to put the object in a try/catch and if
the object cannot do what it's supposed to do, throw an exception and caught
by the function that instantiated the object.

I ask because I realize I've written code that says "ManipulateData
md("/tmp/blah.txt"); bool bOK(md.Run());" and it seems ... unnecessary.

Just curious what others thought,

Jenna
Jul 19 '05 #1
2 2514
"Jenna Olson" <wa*******@comcast.net> wrote...
I've never seen this particular issue addressed, but was wondering if
there's anything to support one way or another. Say I have a class:

class ManipulateData
{
public:
ManipulateData(const char* Path-To-Some-Text-File)
{ ... }

bool Run();
long DataCount();

... etc ...
};

What I'm wondering is if the Run() function is really necessary. If a class so completely encapsulates a particular type of functionality that under C
it probably would have been written as a single function, with no further
setting of members, is it really necessary or proper to split the start into both the constructor *and* the Run()?
Probably not.
True the Run() returns a bool that
would presumably indicate success, but my thought is that because the bool
only indicates sucess or failure, and in the case failure might be for
multiple reasons, it would be better to put the object in a try/catch and if the object cannot do what it's supposed to do, throw an exception and caught by the function that instantiated the object.

I ask because I realize I've written code that says "ManipulateData
md("/tmp/blah.txt"); bool bOK(md.Run());" and it seems ... unnecessary.


It is unnecessary. I think you should only consider doing it if
the file can be changed during the lifetime of your 'ManipulateData'
object and you might want to "re-manipulate" the data. Otherwise,
you could keep the functionality in the constructor and have it set
some internal flag, which you will query later:

ManipulateData md("/tmp/blah.txt");
if (md.isOK())
...

Victor
Jul 19 '05 #2
On Fri, 25 Jul 2003 12:31:18 GMT, "Jenna Olson" <wa*******@comcast.net> wrote:
I've never seen this particular issue addressed, but was wondering if
there's anything to support one way or another. Say I have a class:

class ManipulateData
{
public:
ManipulateData(const char* Path-To-Some-Text-File)
{ ... }

bool Run();
long DataCount();

... etc ...
};

What I'm wondering is if the Run() function is really necessary.


What you really should be wondering about is the dependency of
methods on each other. For example, is a call to DataCount valid
before calling Run, or after a failed call of Run? If not, then
DataCount should probably be a method on an object returned by Run,
enforcing that constraint.

Designing a class so that the order of method calls matter is
generally a bad idea, although in some cases there's no way around
(and there are well-known patterns that address these few cases).

But if Run is the only exposed functionality then it might make
sense to have this method. A functor class is one example, with
operator () playing the rôle of Run. As another example, Run might
be a virtual method.

Jul 19 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Derek Hart | last post by:
I wish to execute code from a string. The string will have a function name, which will return a string: Dim a as string a = "MyFunctionName(param1, param2)" I have seen a ton of people...
3
by: news.microsoft.com | last post by:
Hi folks, I got samples on http://www.aspfaq.com/show.asp?id=2059 and runs ok to dir ms-dos command, but to others commands like del, rd, deltree, etc... it has not had any effect, even it has...
14
by: Vilmar Brazăo de Oliveira | last post by:
Hi all, I was using: <% Set objWshell = Server.CreateObject("WScript.Shell") objWshell.Run "%COMSPEC% /C ren topoX.jpg topo_cliente.jpg", 0, TRUE %> BUT the comand COMSPEC disapeared of all my...
13
by: Bob Day | last post by:
Using vs2003, vb.net I start a thread, giving it a name before start. Code snippet: 'give each thread a unique name (for later identification) Trunk_Thread.Name = "Trunk_0_Thread" ' allow...
2
by: Rafi B. | last post by:
Sorry for the English. I mean, when building my applications, I often need to do several database actions, and I'm thinking, what's better? 1) Open connection with DB, for instance mySQL, at...
3
by: =?Utf-8?B?SmFuIEhlcHBlbg==?= | last post by:
Hi, I've a question. I'm developing a windows application and for the application i need to run functions and procedures that are stored in a database. Here is an example that i tried to get...
4
hsn
by: hsn | last post by:
hello everyone. i am trying to run the sudo -i command in my mac. here is the code String s = null; try {
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.